From 59cfa2634e5eae04f44e38e5f0e5035dc4195240 Mon Sep 17 00:00:00 2001 From: Francisco Hodge Date: Fri, 8 Aug 2025 16:29:22 -0400 Subject: [PATCH] Make buttonAttrs buttons optional --- src/lib/interfaces.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/interfaces.ts b/src/lib/interfaces.ts index 736eb3dd..92db3c17 100644 --- a/src/lib/interfaces.ts +++ b/src/lib/interfaces.ts @@ -18,7 +18,7 @@ export type KeyboardButtonTheme = { export interface KeyboardButtonAttributes { attribute: string; value: string; - buttons: string; + buttons?: string; } export interface KeyboardInput {