(outputPath: string, contents: string)
| 20 | mkdir(outputPath: string, options?: {recursive?: boolean}): Promise<void>; |
| 21 | copyFile(sourcePath: string, outputPath: string): Promise<void>; |
| 22 | writeFile(outputPath: string, contents: string): Promise<void>; |
| 23 | } |
| 24 | |
| 25 | const defaultEffects: CreateEffects = { |
no outgoing calls
no test coverage detected