refactor(test): stabilize case tables and readonly helper inputs

This commit is contained in:
Peter Steinberger
2026-02-22 00:00:53 +01:00
parent 03586e3d00
commit 8752203f59
11 changed files with 106 additions and 52 deletions

View File

@@ -6,4 +6,4 @@ export type TelegramInlineButton = {
style?: TelegramButtonStyle;
};
export type TelegramInlineButtons = TelegramInlineButton[][];
export type TelegramInlineButtons = ReadonlyArray<ReadonlyArray<TelegramInlineButton>>;