(path: string, encoding: string)
| 101 | mkdir(path: string): Promise<string>; |
| 102 | mv(source: string, target: string): Promise<void>; |
| 103 | readFile(path: string, encoding: string): Promise<string>; |
| 104 | readFileChunk( |
| 105 | path: string, |
| 106 | offset: CodegenTypes.Int32, |