/** * XG-IM Channel Plugin — 组装层 * * 配置与解析见 channel-config.ts;入站正文见 inbound-display.ts; * @ 后派发见 dispatch-mentioned-reply.ts(入站消息直投 OpenClaw, * 忙碌排队/插话由 OpenClaw 原生 messages.queue 处理,见 docs/插件实现逻辑说明.md)。 * 单账号 WebSocket 连接运行见 account-connection.ts。 * * 账号生命周期由 account-reconciler 管理:Gateway 对 channels.xg_cwork_im 变更不再 * 重启整通道(index.ts 注册 hotPrefixes,仅提交运行时快照),由 Reconciler 轮询 * diff 并按账号启停,避免 1 个账号变更导致全部账号 Abort 重连。 */ import type { PluginRuntime, XgImChannelPlugin } from "./types.js"; export declare function setXgImRuntime(rt: PluginRuntime): void; export declare const xgCworkImChannelPlugin: XgImChannelPlugin; //# sourceMappingURL=channel.d.ts.map