| 10 | } |
| 11 | |
| 12 | export interface ActionCreatorObject { |
| 13 | readonly name: string; |
| 14 | readonly func: ActionCreator<Action<unknown>>; |
| 15 | readonly args: readonly string[]; |
| 16 | } |
| 17 | |
| 18 | // eslint-disable-next-line @typescript-eslint/ban-types |
| 19 | function flatTree( |
nothing calls this directly
no outgoing calls
no test coverage detected