(
/** @type {string} */ file,
/** @type {(err: Error | null, stats?: import("fs").Stats) => void} */ callback
)
| 128 | callback(); |
| 129 | }, |
| 130 | stat( |
| 131 | /** @type {string} */ file, |
| 132 | /** @type {(err: Error | null, stats?: import("fs").Stats) => void} */ callback |
| 133 | ) { |
| 134 | callback(new Error("ENOENT")); |
| 135 | } |
| 136 | }) |
| 137 | }; |
| 138 |
nothing calls this directly
no test coverage detected