| 1 | import noop from 'lodash/noop' |
| 2 | |
| 3 | interface DevTools { |
| 4 | send(action: { type: string }, state?: Partial<GlobalState>): void |
| 5 | init(state: GlobalState): void |
| 6 | } |
| 7 | |
| 8 | interface GlobalState { |
| 9 | [modelName: string]: Record<string, unknown> |
no outgoing calls
no test coverage detected