types: fix ReactionEffect options type

This commit is contained in:
Chika 2021-09-08 11:13:10 +03:00
parent 177246034b
commit f665d9c477

View File

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