From dbc73a4219babcb41e5383512dc0ed2046575b0f Mon Sep 17 00:00:00 2001 From: Chika Date: Thu, 16 Dec 2021 10:30:23 +0300 Subject: [PATCH] types(effect): fix build --- src/core/types/Calculation/Store/effect.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/types/Calculation/Store/effect.ts b/src/core/types/Calculation/Store/effect.ts index 1e493c8..b7771ee 100644 --- a/src/core/types/Calculation/Store/effect.ts +++ b/src/core/types/Calculation/Store/effect.ts @@ -19,7 +19,7 @@ export interface IReactionEffect { ): { expression: (r: IReactionPublic) => any; effect: (arg: any, prev: any, r: IReactionPublic) => void; - options?: IReactionOptions; + options?: IReactionOptions; }; }