(path: string)
| 16 | export interface FsUtils { |
| 17 | init(): Promise<void>; |
| 18 | pathExists(path: string): boolean; |
| 19 | ensureDir(path: string): void; |
| 20 | readJSONSync<T = Dictionary>(path: string): T; |
| 21 | glob(input: string | string[], cwd?: string): string[]; |
no outgoing calls
no test coverage detected