From a72fc1ccfb3a09b3c0476b8ce63dff6208b5e026 Mon Sep 17 00:00:00 2001 From: BennyTaccardi Date: Tue, 5 Nov 2024 14:36:18 +0100 Subject: [PATCH] fix(smart-actions): add missing fields to smart actions options interface --- 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 {