| 14 | const utf8TextDecoder = new TextDecoder('utf8', { fatal: true }); |
| 15 | |
| 16 | export interface File { |
| 17 | type: 'file'; |
| 18 | content: string; |
| 19 | isBinary: boolean; |
| 20 | } |
| 21 | |
| 22 | export interface Folder { |
| 23 | type: 'folder'; |
nothing calls this directly
no outgoing calls
no test coverage detected