Reads the full content of a file. Throw if the file does not exist.
(path: string)
| 63 | export interface SessionFsProvider { |
| 64 | /** Reads the full content of a file. Throw if the file does not exist. */ |
| 65 | readFile(path: string): Promise<string>; |
| 66 | |
| 67 | /** Writes content to a file, creating parent directories if needed. */ |
| 68 | writeFile(path: string, content: string, mode?: number): Promise<void>; |
no outgoing calls
no test coverage detected