| 23 | } |
| 24 | |
| 25 | export interface LoopReducerWithDefinedState<S, A extends Action = AnyAction> { |
| 26 | (state: S, action: WithDefaultActionHandling<A>, ...args: any[]): S | Loop<S>; |
| 27 | } |
| 28 | |
| 29 | export interface LiftedLoopReducer<S, A extends Action = AnyAction> { |
| 30 | ( |
nothing calls this directly
no outgoing calls
no test coverage detected