( callbacks: ((...args: any[]) => boolean)[], ...ids: Id[] )
| 49 | ); |
| 50 | |
| 51 | const everyCallback = ( |
| 52 | callbacks: ((...args: any[]) => boolean)[], |
| 53 | ...ids: Id[] |
| 54 | ): boolean => arrayEvery(callbacks, (callback) => callback(...ids)); |
| 55 | |
| 56 | export const createMiddleware = getCreateFunction( |
| 57 | (store: Store): Middleware => { |
no test coverage detected
searching dependent graphs…