From 14a8ba8e6ff588cb235ca96fd3c042481874d846 Mon Sep 17 00:00:00 2001 From: SteveBunlon Date: Wed, 29 Jun 2022 11:12:54 +0200 Subject: [PATCH] fix(types): load and change hook are now optional on smart action (#979) --- 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 {