openclaw
Version:
Multi-channel AI gateway with extensible messaging integrations
17 lines (16 loc) • 577 B
TypeScript
import { t as ChannelPlugin } from "./types.plugin-BIHyhl5u.js";
import { t as TwitchAccountConfig } from "./types-C3b4EExc.js";
//#region extensions/twitch/src/plugin.d.ts
type ResolvedTwitchAccount = TwitchAccountConfig & {
accountId?: string | null;
};
/**
* Twitch channel plugin.
*
* Implements the ChannelPlugin interface to provide Twitch chat integration
* for OpenClaw. Supports message sending, receiving, access control, and
* status monitoring.
*/
declare const twitchPlugin: ChannelPlugin<ResolvedTwitchAccount>;
//#endregion
export { twitchPlugin as t };