From 81df12766c7e03358d72c6e0246b8f7c28856c61 Mon Sep 17 00:00:00 2001 From: steveb Date: Wed, 29 Jun 2022 11:00:04 +0200 Subject: [PATCH] fix(types): load and change hook are now optional on smart action --- types/index.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/types/index.d.ts b/types/index.d.ts index e13094b42..a02052627 100644 --- a/types/index.d.ts +++ b/types/index.d.ts @@ -319,8 +319,8 @@ export interface SmartActionChangeHook { } export interface SmartActionHooks { - load: SmartActionLoadHook; - change: Record; + load?: SmartActionLoadHook; + change?: Record; } export interface SmartActionOptions {