| 25 | } |
| 26 | |
| 27 | export interface Message { |
| 28 | state: string; |
| 29 | payload: { |
| 30 | id: number; |
| 31 | type: string; |
| 32 | }; |
| 33 | type: string; |
| 34 | } |
| 35 | |
| 36 | interface DevToolsStoreExtraParams { |
| 37 | send: (type: string | ReduxAction, state: object) => void; |
nothing calls this directly
no outgoing calls
no test coverage detected