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