We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a0600a0 commit ac78b3cCopy full SHA for ac78b3c
1 file changed
types/index.d.ts
@@ -11,4 +11,9 @@ declare module '@risingstack/react-easy-state' {
11
ctx?: any,
12
args?: any[],
13
): T;
14
+ function autoEffect(
15
+ effect: () => void,
16
+ deps?: DependencyList,
17
+ ): () => void | undefined;
18
+ function clearEffect(effect: () => void): void;
19
}
0 commit comments