(context, restMiddlewares)
| 221 | } |
| 222 | |
| 223 | const delayMiddleware: Middleware = async (context, restMiddlewares) => { |
| 224 | await timeout(1000, {}) |
| 225 | context.next(restMiddlewares) |
| 226 | } |
| 227 | |
| 228 | export const NextCounterModel: ModelType< |
| 229 | CounterState, |
nothing calls this directly
no test coverage detected
searching dependent graphs…