(
path: string,
content: WriteFileContent,
options: WriteFileOptions = {},
)
| 97 | // --- Mutations --------------------------------------------------- |
| 98 | |
| 99 | writeFile( |
| 100 | path: string, |
| 101 | content: WriteFileContent, |
| 102 | options: WriteFileOptions = {}, |
| 103 | ): Promise<void> { |
| 104 | return writeFile(this.db, path, content, options, this.now); |
| 105 | } |
| 106 | |
| 107 | async mkdir(path: string, options: MkdirOptions = {}): Promise<void> { |
| 108 | mkdir(this.db, path, options, this.now); |
nothing calls this directly
no test coverage detected