(
/** @type {string} */ dir,
/** @type {(err?: Error | null) => void} */ callback
)
| 115 | }, |
| 116 | outputFileSystem: /** @type {import("../").OutputFileSystem} */ ({ |
| 117 | mkdir( |
| 118 | /** @type {string} */ dir, |
| 119 | /** @type {(err?: Error | null) => void} */ callback |
| 120 | ) { |
| 121 | callback(); |
| 122 | }, |
| 123 | writeFile( |
| 124 | /** @type {string} */ file, |
| 125 | /** @type {string | Buffer} */ content, |