(actions: () => void)
| 56 | export const createMiddleware = getCreateFunction( |
| 57 | (store: Store): Middleware => { |
| 58 | const fluent = (actions: () => void): Middleware => { |
| 59 | actions(); |
| 60 | return middleware; |
| 61 | }; |
| 62 | |
| 63 | const addCallback = |
| 64 | <Callback>(callbacks: Callback[]) => |
no test coverage detected
searching dependent graphs…