| 4 | type FSNodeType = 'FILE' | 'DIRECTORY' |
| 5 | |
| 6 | interface FSNode { |
| 7 | type: FSNodeType |
| 8 | ctime: number |
| 9 | mtime: number |
| 10 | lastSavedTime: number |
| 11 | } |
| 12 | |
| 13 | interface FSNodeWithPath { |
| 14 | path: string |
nothing calls this directly
no outgoing calls
no test coverage detected