| 64 | * File system store snapshot (for serialization) |
| 65 | */ |
| 66 | export interface FileSystemSnapshot { |
| 67 | nodes: Array<[string, FileNode]>; |
| 68 | pathIndex: Array<[string, string]>; |
| 69 | rootId: string; |
| 70 | } |
| 71 | |
| 72 | // ============ File operation types ============ |
| 73 |
nothing calls this directly
no outgoing calls
no test coverage detected