10 lines
244 B
TypeScript
10 lines
244 B
TypeScript
|
|
export type TelegramButtonStyle = "danger" | "success" | "primary";
|
||
|
|
|
||
|
|
export type TelegramInlineButton = {
|
||
|
|
text: string;
|
||
|
|
callback_data: string;
|
||
|
|
style?: TelegramButtonStyle;
|
||
|
|
};
|
||
|
|
|
||
|
|
export type TelegramInlineButtons = TelegramInlineButton[][];
|