| 50 | export function useStore<S = any>(injectKey?: InjectionKey<Store<S>> | string): Store<S>; |
| 51 | |
| 52 | export interface Dispatch { |
| 53 | (type: string, payload?: any, options?: DispatchOptions): Promise<any>; |
| 54 | <P extends Payload>(payloadWithType: P, options?: DispatchOptions): Promise<any>; |
| 55 | } |
| 56 | |
| 57 | export interface Commit { |
| 58 | (type: string, payload?: any, options?: CommitOptions): void; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…