From c0a0af4d2f5da7cfce43916bd84805e5361483e8 Mon Sep 17 00:00:00 2001 From: BennyTaccardi Date: Tue, 5 Nov 2024 16:12:18 +0100 Subject: [PATCH] fix(actions): add missing fields to actions options interface (#1126) --- types/index.d.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/types/index.d.ts b/types/index.d.ts index e775b68a..c81207a8 100644 --- a/types/index.d.ts +++ b/types/index.d.ts @@ -334,6 +334,8 @@ export interface SmartActionOptions { endpoint?: string; httpMethod?: string; hooks?: SmartActionHooks; + description?: string; + submitButtonLabel?: string; } export interface SmartSegmentOptions {