types(effect): fix build

This commit is contained in:
Chika 2021-12-16 10:30:23 +03:00
parent 02212722d3
commit dbc73a4219

View File

@ -19,7 +19,7 @@ export interface IReactionEffect {
): {
expression: (r: IReactionPublic) => any;
effect: (arg: any, prev: any, r: IReactionPublic) => void;
options?: IReactionOptions<any>;
options?: IReactionOptions<any, boolean>;
};
}