UNPKG

@gguf/claw

Version:

Multi-channel AI gateway with extensible messaging integrations

8 lines (7 loc) 248 B
export type TelegramButtonStyle = "danger" | "success" | "primary"; export type TelegramInlineButton = { text: string; callback_data: string; style?: TelegramButtonStyle; }; export type TelegramInlineButtons = TelegramInlineButton[][];