From f665d9c477a2b1666f971dcaf8dfe9774294cb2f Mon Sep 17 00:00:00 2001 From: Chika Date: Wed, 8 Sep 2021 11:13:10 +0300 Subject: [PATCH] types: fix ReactionEffect options type --- 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 ce619c7..1e493c8 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; }; }