| 1 | export default interface Store<S = any> { |
| 2 | middleware(...args: any[]): void; |
| 3 | setState(f: ((state: S) => Partial<S>) | Partial<S>): void; |
| 4 | subscribe(f: Function): () => void; |
| 5 | getState(): S; |
| 6 | reset(): void; |
| 7 | } |
no outgoing calls
no test coverage detected