Files
openclaw/extensions/mattermost/src/config-surface.ts
2026-05-03 16:00:22 -07:00

8 lines
371 B
TypeScript

import { buildChannelConfigSchema } from "openclaw/plugin-sdk/channel-config-primitives";
import { MattermostConfigSchema } from "./config-schema-core.js";
import { mattermostChannelConfigUiHints } from "./config-ui-hints.js";
export const MattermostChannelConfigSchema = buildChannelConfigSchema(MattermostConfigSchema, {
uiHints: mattermostChannelConfigUiHints,
});