openclaw
Version:
Multi-channel AI gateway with extensible messaging integrations
11 lines • 404 B
TypeScript
//#region src/channels/chat-type.d.ts
/**
* Normalized conversation kind shared by channel routing, sessions, and SDK helpers.
*/
type ChatType = "direct" | "group" | "channel";
/**
* Normalizes channel-specific chat type labels into OpenClaw conversation kinds.
*/
declare function normalizeChatType(raw?: string): ChatType | undefined;
//#endregion
export { normalizeChatType as n, ChatType as t };