(filepath: string)
| 34 | platform: NodeJS.Platform; |
| 35 | path: typeof path.posix | typeof path.win32; |
| 36 | isFile(filepath: string): Promise<boolean>; |
| 37 | readFile(filepath: string): Promise<Buffer>; |
| 38 | writeFile(filepath: string, content: Buffer): Promise<void>; |
| 39 | readDir(dirpath: string): Promise<string[]>; |
no outgoing calls
no test coverage detected