(filepath: string)
| 31 | isFile(filepath: string): Promise<boolean>; |
| 32 | isFolder(filepath: string): Promise<boolean>; |
| 33 | readFile(filepath: string): Promise<Buffer>; |
| 34 | writeFile(filepath: string, content: Buffer): Promise<void>; |
| 35 | rename(oldPath: string, newPath: string): Promise<void>; |
| 36 | mkdirp(dirpath: string): Promise<void>; |
no outgoing calls
no test coverage detected