| 27 | } |
| 28 | |
| 29 | export interface LiftedLoopReducer<S, A extends Action = AnyAction> { |
| 30 | ( |
| 31 | state: S | undefined, |
| 32 | action: WithDefaultActionHandling<A>, |
| 33 | ...args: any[] |
| 34 | ): Loop<S>; |
| 35 | } |
| 36 | |
| 37 | export type CmdSimulation = { |
| 38 | result: any; |
nothing calls this directly
no outgoing calls
no test coverage detected