Merged via /review-pr -> /prepare-pr -> /merge-pr. Prepared head SHA: 239cb3552e4eaf2597b8e1f4af82ab2ffd1d446c Co-authored-by: obviyus <22031114+obviyus@users.noreply.github.com> Co-authored-by: obviyus <22031114+obviyus@users.noreply.github.com> Reviewed-by: @obviyus
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[][];
|