(
/** @type {string} */ file,
/** @type {string | Buffer} */ content,
/** @type {(err?: Error | null) => void} */ callback
)
| 121 | callback(); |
| 122 | }, |
| 123 | writeFile( |
| 124 | /** @type {string} */ file, |
| 125 | /** @type {string | Buffer} */ content, |
| 126 | /** @type {(err?: Error | null) => void} */ callback |
| 127 | ) { |
| 128 | callback(); |
| 129 | }, |
| 130 | stat( |
| 131 | /** @type {string} */ file, |
| 132 | /** @type {(err: Error | null, stats?: import("fs").Stats) => void} */ callback |
no test coverage detected