Make buttonAttrs buttons optional

This commit is contained in:
Francisco Hodge
2025-08-08 16:29:22 -04:00
parent 6e1daeba5b
commit 59cfa2634e

View File

@@ -18,7 +18,7 @@ export type KeyboardButtonTheme = {
export interface KeyboardButtonAttributes { export interface KeyboardButtonAttributes {
attribute: string; attribute: string;
value: string; value: string;
buttons: string; buttons?: string;
} }
export interface KeyboardInput { export interface KeyboardInput {