Read a single file's content
(path: string)
| 97 | listFiles(path?: string): Promise<FileNode[]>; |
| 98 | /** Read a single file's content */ |
| 99 | readFile(path: string): Promise<ReadFileResult>; |
| 100 | /** Write file */ |
| 101 | writeFile(path: string, content: unknown, options?: WriteFileOptions): Promise<void>; |
| 102 | /** Delete file */ |