mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-08 15:33:57 +00:00
8 lines
331 B
TypeScript
8 lines
331 B
TypeScript
// Slack helper module supports config schema behavior.
|
|
import { buildChannelConfigSchema, SlackConfigSchema } from "../config-api.js";
|
|
import { slackChannelConfigUiHints } from "./config-ui-hints.js";
|
|
|
|
export const SlackChannelConfigSchema = buildChannelConfigSchema(SlackConfigSchema, {
|
|
uiHints: slackChannelConfigUiHints,
|
|
});
|