| 52 | * File system store state |
| 53 | */ |
| 54 | export interface FileSystemStoreState { |
| 55 | /** Node map: id -> FileNode */ |
| 56 | nodes: Map<string, FileNode>; |
| 57 | /** Path index: path -> id */ |
| 58 | pathIndex: Map<string, string>; |
| 59 | /** Root node ID */ |
| 60 | rootId: string; |
| 61 | } |
| 62 | |
| 63 | /** |
| 64 | * File system store snapshot (for serialization) |
nothing calls this directly
no outgoing calls
no test coverage detected