(path: string, options?: { recursive?: boolean })
| 5 | |
| 6 | export interface FileSystemExecutor { |
| 7 | mkdir(path: string, options?: { recursive?: boolean }): Promise<void>; |
| 8 | readFile(path: string, encoding?: BufferEncoding): Promise<string>; |
| 9 | writeFile(path: string, content: string, encoding?: BufferEncoding): Promise<void>; |
| 10 | createWriteStream(path: string, options?: { flags?: string }): WriteStream; |
no outgoing calls
no test coverage detected