/** * opencode-chat-channel — opencode 多渠道机器人插件 * * 通过 .env 文件中的 CHAT_CHANNELS 配置项选择启用哪些渠道: * * CHAT_CHANNELS=feishu # 只启用飞书 * CHAT_CHANNELS=feishu,wecom # 同时启用飞书和企业微信 * CHAT_CHANNELS= # 留空:自动探测(凭证存在即启用) * # 不配置此项:同留空,自动探测 * * 其他配置项: * OPENCODE_BASE_URL opencode API 地址(默认 http://localhost:4321) * * 各渠道的凭证配置详见 README。 */ import type { Plugin } from "@opencode-ai/plugin"; export declare const ChatChannelPlugin: Plugin; export default ChatChannelPlugin; export type { ChatChannel, ChannelFactory, ChannelName, IncomingMessage, PluginClient } from "./types.js"; //# sourceMappingURL=index.d.ts.map