MCPcopy Create free account
hub / github.com/MiniMax-AI/OpenRoom / FileSystemStoreState

Interface FileSystemStoreState

apps/webuiapps/src/types/fileSystem.ts:54–61  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

52 * File system store state
53 */
54export 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)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected