* Read at most `maxBytes` from the head of the file. Index/hot-set builds * use this so files edited outside MemoryService cannot force unbounded reads * on stream startup. May split a trailing multibyte code point; callers treat * the result as a best-effort prefix.
(relPath: string, maxBytes: number)
| 259 | * the result as a best-effort prefix. |
| 260 | */ |
| 261 | readFilePrefix(relPath: string, maxBytes: number): Promise<string>; |
| 262 | /** Atomic write; creates parent directories. */ |
| 263 | writeFile(relPath: string, content: string): Promise<void>; |
| 264 | /** Recursive delete of a file or directory. */ |
no outgoing calls
no test coverage detected