We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 10ed706 commit af98136Copy full SHA for af98136
lib/vlow.d.ts
@@ -1,6 +1,9 @@
1
export class Store {
2
constructor(...args: any[]);
3
- setState(newState: any, cb: any): void;
+ state: any;
4
+ setState(newStateOrCallback: any, cb?: any): void;
5
+ unregisterStore(): void;
6
+ listenerEmpty(): void;
7
}
8
export function Component(...args: any[]): any;
9
export function createActions(names: any): any;
src/vlow.d.ts
@@ -2,6 +2,8 @@ export class Store {
state: any;
setState(newStateOrCallback: any, cb?: any): void;
0 commit comments