| 25 | * dispatched. |
| 26 | */ |
| 27 | export interface Dispatch<A extends Action = UnknownAction> { |
| 28 | <T extends A>(action: T, ...extraArgs: any[]): T |
| 29 | } |
| 30 | |
| 31 | /** |
| 32 | * Function to remove listener added by `Store.subscribe()`. |
nothing calls this directly
no outgoing calls
no test coverage detected