(
/** @type {unknown} */ module,
/** @type {unknown} */ exportsInfo = undefined
)
| 10 | }); |
| 11 | |
| 12 | const makeModuleGraph = ( |
| 13 | /** @type {unknown} */ module, |
| 14 | /** @type {unknown} */ exportsInfo = undefined |
| 15 | ) => |
| 16 | /** @type {import("../lib/ModuleGraph")} */ ( |
| 17 | /** @type {unknown} */ ({ |
| 18 | getParentModule: () => module, |
| 19 | getExportsInfo: () => exportsInfo |
| 20 | }) |
| 21 | ); |
| 22 | |
| 23 | const entry = ( |
| 24 | /** @type {Partial<import("../lib/dependencies/CssIcssExportDependency").CssExportEntry>} */ over |
no outgoing calls
no test coverage detected