mirror of https://github.com/openclaw/openclaw.git
10 lines
305 B
TypeScript
10 lines
305 B
TypeScript
import {
|
|
buildChannelConfigSchema,
|
|
SlackConfigSchema,
|
|
} from "openclaw/plugin-sdk/channel-config-schema";
|
|
import { slackChannelConfigUiHints } from "./config-ui-hints.js";
|
|
|
|
export const SlackChannelConfigSchema = buildChannelConfigSchema(SlackConfigSchema, {
|
|
uiHints: slackChannelConfigUiHints,
|
|
});
|