mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-13 19:10:39 +00:00
10 lines
270 B
TypeScript
10 lines
270 B
TypeScript
export type TelegramButtonStyle = "danger" | "success" | "primary";
|
|
|
|
export type TelegramInlineButton = {
|
|
text: string;
|
|
callback_data: string;
|
|
style?: TelegramButtonStyle;
|
|
};
|
|
|
|
export type TelegramInlineButtons = ReadonlyArray<ReadonlyArray<TelegramInlineButton>>;
|