@rolldown/debug
Advanced tools
| export type ModuleImport = { | ||
| id: string; | ||
| /** | ||
| * - `import`: `import { foo } from './lib.js';` | ||
| * - `dynamic-import`: `import('./lib.js')` | ||
| * - `require-call`: `require('./lib.js')` | ||
| * - `import-rule`: `@import 'bg-color.css'` | ||
| * - `url-token`: `url('./icon.png')` | ||
| * - `new-url`: `new URL('./worker.js', import.meta.url)` | ||
| * - `hot-accept`: `import.meta.hot.accept('./lib.js', () => {})` | ||
| */ | ||
| kind: 'import' | 'dynamic-import' | 'require-call' | 'import-rule' | 'url-token' | 'new-url' | 'hot-accept'; | ||
| /** | ||
| * `./lib.js` in `import { foo } from './lib.js';` | ||
| */ | ||
| module_request: string; | ||
| }; |
| // This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually. | ||
| export {}; |
@@ -12,1 +12,2 @@ export * from './BuildEnd.js'; | ||
| export * from './ModuleGraphReady.js'; | ||
| export * from './ModuleImport.js'; |
@@ -12,1 +12,2 @@ export * from './BuildEnd.js'; | ||
| export * from './ModuleGraphReady.js'; | ||
| export * from './ModuleImport.js'; |
@@ -0,6 +1,7 @@ | ||
| import type { ModuleImport } from "./ModuleImport"; | ||
| export type Module = { | ||
| id: string; | ||
| is_external: boolean; | ||
| imports: Array<string> | null; | ||
| imports: Array<ModuleImport> | null; | ||
| importers: Array<string> | null; | ||
| }; |
@@ -1,2 +0,1 @@ | ||
| // This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually. | ||
| export {}; |
+1
-1
| { | ||
| "name": "@rolldown/debug", | ||
| "version": "1.0.0-beta.9-commit.43425a0", | ||
| "version": "1.0.0-beta.9-commit.76c39c6", | ||
| "license": "MIT", | ||
@@ -5,0 +5,0 @@ "type": "module", |
Sorry, the diff of this file is not supported yet
8826
10.26%31
6.9%176
13.55%