mirror of
https://github.com/openclaw/openclaw.git
synced 2026-08-26 12:26:38 -06:00
9 lines
429 B
TypeScript
9 lines
429 B
TypeScript
// Mattermost helper module supports config surface behavior.
|
|
import { buildChannelConfigSchema } from "openclaw/plugin-sdk/channel-config-schema";
|
|
import { MattermostConfigSchema } from "./config-schema-core.js";
|
|
import { mattermostChannelConfigUiHints } from "./config-ui-hints.js";
|
|
|
|
export const MattermostChannelConfigSchema = buildChannelConfigSchema(MattermostConfigSchema, {
|
|
uiHints: mattermostChannelConfigUiHints,
|
|
});
|