| 6 | } from './jsonml-types'; |
| 7 | |
| 8 | export interface DevToolsFormatter { |
| 9 | header: (obj: unknown) => JsonMLElementList | null; |
| 10 | hasBody: (obj: unknown) => boolean; |
| 11 | body: (obj: unknown) => JsonMLElementList | null; |
| 12 | } |
| 13 | |
| 14 | function getFormatter( |
| 15 | immutableFormaters: Array<DevToolsFormatter>, |
nothing calls this directly
no outgoing calls
no test coverage detected