Write file
(path: string, content: unknown, options?: WriteFileOptions)
| 99 | readFile(path: string): Promise<ReadFileResult>; |
| 100 | /** Write file */ |
| 101 | writeFile(path: string, content: unknown, options?: WriteFileOptions): Promise<void>; |
| 102 | /** Delete file */ |
| 103 | deleteFile(path: string): Promise<void>; |
| 104 | } |
no outgoing calls
no test coverage detected