rollup-plugin-stats 2.1.1-beta.3 → 2.1.1-beta.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/src/types.d.cts +64 -51
- package/dist/src/types.d.cts.map +1 -1
- package/dist/src/types.d.mts +64 -51
- package/dist/src/types.d.mts.map +1 -1
- package/package.json +1 -1
package/dist/src/types.d.cts
CHANGED
|
@@ -1,56 +1,97 @@
|
|
|
1
1
|
//#region src/types.d.ts
|
|
2
|
+
/**
|
|
3
|
+
* Standard source map v3 object mapping generated code back to original sources.
|
|
4
|
+
*
|
|
5
|
+
* @see https://sourcemaps.info/spec.html
|
|
6
|
+
* @see https://github.com/rollup/rollup/blob/master/src/rollup/types.d.ts#L98
|
|
7
|
+
* @see https://github.com/rolldown/rolldown/blob/main/packages/rolldown/src/types/rolldown-output.ts#L26
|
|
8
|
+
*/
|
|
9
|
+
type SourceMap = {
|
|
10
|
+
/** Name of the generated file this source map corresponds to. */file: string; /** Base64 VLQ-encoded string describing the source mappings. */
|
|
11
|
+
mappings: string; /** Original symbol names referenced by the mappings. */
|
|
12
|
+
names: string[]; /** Paths to the original source files. */
|
|
13
|
+
sources: string[]; /** Optional inline content of each original source file, parallel to `sources`. */
|
|
14
|
+
sourcesContent?: string[] | undefined; /** Source map specification version — always `3`. */
|
|
15
|
+
version: number;
|
|
16
|
+
};
|
|
2
17
|
/**
|
|
3
18
|
* A generated asset entry in the output bundle (e.g. CSS, images, JSON).
|
|
19
|
+
*
|
|
20
|
+
* @see https://github.com/rollup/rollup/blob/master/src/rollup/types.d.ts#L958
|
|
21
|
+
* @see https://github.com/rolldown/rolldown/blob/main/packages/rolldown/src/types/rolldown-output.ts#L85
|
|
4
22
|
*/
|
|
5
23
|
type OutputAsset = {
|
|
6
|
-
type: 'asset'; /**
|
|
7
|
-
names: string[];
|
|
8
|
-
/**
|
|
9
|
-
* The asset content as a string (text assets) or a `Uint8Array` (binary assets).
|
|
10
|
-
* Available when options.stats.source = true (default false)
|
|
11
|
-
*/
|
|
12
|
-
source?: string | Uint8Array; /** The emitted file name of the asset relative to the output directory. */
|
|
24
|
+
type: 'asset'; /** The emitted file name of the asset relative to the output directory. */
|
|
13
25
|
fileName: string;
|
|
14
26
|
/**
|
|
15
|
-
*
|
|
16
|
-
*
|
|
27
|
+
* The asset name, or `undefined` when not available.
|
|
28
|
+
* @deprecated Use `names` instead.
|
|
17
29
|
*/
|
|
18
|
-
|
|
30
|
+
name: string | undefined; /** All entry names that reference this asset. */
|
|
31
|
+
names: string[];
|
|
19
32
|
/**
|
|
20
33
|
* The original file name of the source asset before any transformations, or `null` when not applicable.
|
|
21
34
|
* @deprecated Use `originalFileNames` instead.
|
|
22
35
|
*/
|
|
23
36
|
originalFileName: string | null; /** The original file names of the source assets before any transformations. */
|
|
24
|
-
originalFileNames: string[];
|
|
37
|
+
originalFileNames: string[];
|
|
38
|
+
/**
|
|
39
|
+
* The asset content as a string (text assets) or a `Uint8Array` (binary assets).
|
|
40
|
+
* Available when options.stats.source = true (default false)
|
|
41
|
+
*/
|
|
42
|
+
source?: string | Uint8Array;
|
|
43
|
+
/**
|
|
44
|
+
* Rollup - Whether this asset requires a code reference (`import.meta.ROLLUP_FILE_URL_<id>`)
|
|
45
|
+
* to be included in the bundle.
|
|
46
|
+
*
|
|
47
|
+
* @see https://github.com/rollup/rollup/issues/4774
|
|
48
|
+
*/
|
|
49
|
+
needsCodeReference?: boolean; /** Vite - specific metadata */
|
|
25
50
|
viteMetadata?: {
|
|
26
51
|
/** Set of asset file names imported by this asset (e.g. images referenced in CSS). */importedAssets: Set<string>; /** Set of CSS file names imported by this asset. */
|
|
27
52
|
importedCss: Set<string>;
|
|
28
53
|
};
|
|
29
54
|
};
|
|
30
55
|
/**
|
|
31
|
-
*
|
|
56
|
+
* Stats for an individual module included in an output chunk.
|
|
57
|
+
* @see https://github.com/rollup/rollup/blob/master/src/rollup/types.d.ts#L963
|
|
58
|
+
* @see https://github.com/rolldown/rolldown/blob/main/packages/rolldown/src/types/rolldown-output.ts#L40
|
|
32
59
|
*/
|
|
33
|
-
type
|
|
34
|
-
type: 'chunk';
|
|
60
|
+
type RenderedModule = {
|
|
35
61
|
/**
|
|
36
|
-
* The
|
|
37
|
-
*
|
|
62
|
+
* The module code that Vite/Rolldown/Rollup included in the bundle, or `null` when the
|
|
63
|
+
* module was fully tree-shaken.
|
|
64
|
+
* Available only when options.stats.source = true (default false)
|
|
38
65
|
*/
|
|
66
|
+
readonly code?: string | null; /** Size of the original module source in bytes, before any transformations. */
|
|
67
|
+
originalLength: number; /** Rollup - exports removed from this module by tree-shaking. */
|
|
68
|
+
removedExports?: string[]; /** Exports from this module that are retained in the final bundle. */
|
|
69
|
+
renderedExports: string[]; /** Rollup - size of the rendered module code in bytes. */
|
|
70
|
+
renderedLength?: number;
|
|
71
|
+
};
|
|
72
|
+
/**
|
|
73
|
+
* A generated JavaScript chunk entry in the output bundle.
|
|
74
|
+
*
|
|
75
|
+
* @see https://github.com/rollup/rollup/blob/master/src/rollup/types.d.ts#L992
|
|
76
|
+
* @see https://github.com/rolldown/rolldown/blob/main/packages/rolldown/src/types/rolldown-output.ts#L85
|
|
77
|
+
*/
|
|
78
|
+
type OutputChunk = {
|
|
79
|
+
type: 'chunk'; /** The chunk name as used in `chunkFileNames` and `entryFileNames` patterns */
|
|
39
80
|
name: string; /** The emitted file name of the chunk relative to the output directory. */
|
|
40
81
|
fileName: string; /** The file name of this chunk before content hashes are applied. */
|
|
41
|
-
preliminaryFileName: string; /**
|
|
42
|
-
referencedFiles
|
|
82
|
+
preliminaryFileName: string; /** Rollup - file names of assets referenced via `import.meta.ROLLUP_FILE_URL_<id>` in this chunk. */
|
|
83
|
+
referencedFiles?: string[]; /** The file name of the source map for this chunk, or `null` when source maps are not generated. */
|
|
43
84
|
sourcemapFileName: string | null; /** Names exported by this chunk. */
|
|
44
85
|
exports: string[];
|
|
45
86
|
/**
|
|
46
87
|
* The module ID of the entry point that this chunk acts as a facade for,
|
|
47
88
|
* or `null` when this chunk is not an entry facade.
|
|
48
89
|
*/
|
|
49
|
-
facadeModuleId: string | null; /**
|
|
50
|
-
implicitlyLoadedBefore
|
|
51
|
-
importedBindings
|
|
90
|
+
facadeModuleId: string | null; /** Rollup - file names of chunks that should be loaded before this implicit entry point. */
|
|
91
|
+
implicitlyLoadedBefore?: string[]; /** Rollup - per-import binding names imported from each dependency chunk, keyed by the imported chunk's file name. */
|
|
92
|
+
importedBindings?: Record<string, string[]>; /** Whether this chunk is a dynamic entry point (i.e. produced by a dynamic `import()`). */
|
|
52
93
|
isDynamicEntry: boolean; /** Whether this chunk is a static entry point declared in the Vite/Rolldown/Rollup input options. */
|
|
53
|
-
isEntry: boolean; /**
|
|
94
|
+
isEntry: boolean; /** Rollup - whether this chunk is an implicit entry point, loaded after another entry via `implicitlyLoadedAfterOneOf`. */
|
|
54
95
|
isImplicitEntry: boolean; /** File names of chunks that are dynamically imported by this chunk. */
|
|
55
96
|
dynamicImports: string[]; /** File names of chunks that are statically imported by this chunk. */
|
|
56
97
|
imports: string[];
|
|
@@ -69,40 +110,12 @@ type OutputChunk = {
|
|
|
69
110
|
* Source map for this chunk, or `null` when source maps are not enabled.
|
|
70
111
|
* Available when options.stats.source = true (default: false)
|
|
71
112
|
*/
|
|
72
|
-
map?: SourceMap | null; /** Optional
|
|
113
|
+
map?: SourceMap | null; /** Vite - Optional specific metadata */
|
|
73
114
|
viteMetadata?: {
|
|
74
115
|
/** Set of asset file names imported by this chunk (e.g. images, fonts). */importedAssets: Set<string>; /** Set of CSS file names imported by this chunk. */
|
|
75
116
|
importedCss: Set<string>;
|
|
76
117
|
};
|
|
77
118
|
};
|
|
78
|
-
/**
|
|
79
|
-
* Stats for an individual module included in an output chunk.
|
|
80
|
-
*/
|
|
81
|
-
type RenderedModule = {
|
|
82
|
-
/**
|
|
83
|
-
* The module code that Vite/Rolldown/Rollup included in the bundle, or `null` when the
|
|
84
|
-
* module was fully tree-shaken.
|
|
85
|
-
* Available only when options.stats.source = true (default false)
|
|
86
|
-
*/
|
|
87
|
-
readonly code?: string | null; /** Size of the original module source in bytes, before any transformations. */
|
|
88
|
-
originalLength: number; /** Exports removed from this module by tree-shaking. */
|
|
89
|
-
removedExports: string[]; /** Exports from this module that are retained in the final bundle. */
|
|
90
|
-
renderedExports: string[]; /** Size of the rendered module code in bytes. */
|
|
91
|
-
renderedLength: number;
|
|
92
|
-
};
|
|
93
|
-
/**
|
|
94
|
-
* Standard source map v3 object mapping generated code back to original sources.
|
|
95
|
-
*
|
|
96
|
-
* @see https://sourcemaps.info/spec.html
|
|
97
|
-
*/
|
|
98
|
-
type SourceMap = {
|
|
99
|
-
/** Name of the generated file this source map corresponds to. */file: string; /** Base64 VLQ-encoded string describing the source mappings. */
|
|
100
|
-
mappings: string; /** Original symbol names referenced by the mappings. */
|
|
101
|
-
names: string[]; /** Paths to the original source files. */
|
|
102
|
-
sources: string[]; /** Optional inline content of each original source file, parallel to `sources`. */
|
|
103
|
-
sourcesContent?: string[] | undefined; /** Source map specification version — always `3`. */
|
|
104
|
-
version: number;
|
|
105
|
-
};
|
|
106
119
|
/**
|
|
107
120
|
* The complete output bundle produced by Vite/Rolldown/Rollup — a map from emitted file name
|
|
108
121
|
* to its corresponding asset or chunk descriptor.
|
package/dist/src/types.d.cts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.cts","names":[],"sources":["../../src/types.ts"],"mappings":";;
|
|
1
|
+
{"version":3,"file":"types.d.cts","names":[],"sources":["../../src/types.ts"],"mappings":";;AAOA;;;;;;KAAY,SAAA;EAQV,iEANA,IAAA,UAUA;EARA,QAAA,UAQO;EANP,KAAA,YAeqB;EAbrB,OAAA,YAyCkB;EAvClB,cAAA,yBAsDe;EApDf,OAAA;AAAA;;;;;;;KASU,WAAA;EACV,IAAA,WAmCA;EAhCA,QAAA;EAqCE;;;;EA/BF,IAAA,sBAiCkB;EA9BlB,KAAA;EAuCwB;;;;EAjCxB,gBAAA,iBA6CA;EA1CA,iBAAA;EAgDA;;;AASF;EAnDE,MAAA,YAAkB,UAAA;;;;;;;EAQlB,kBAAA,YAqHkB;EAlHlB,YAAA;IAyCA,sFAvCE,cAAA,EAAgB,GAAA,UA6ClB;IA3CE,WAAA,EAAa,GAAA;EAAA;AAAA;;;;;;KASL,cAAA;EAgEV;;;;;EAAA,SA1DS,IAAA,kBAyEe;EAtExB,cAAA,UA+EA;EA5EA,cAAA,aAkFM;EA/EN,eAAA,YAoFE;EAjFF,cAAA;AAAA;;;;AA2FF;;;KAlFY,WAAA;EACV,IAAA,WAiFyB;EA9EzB,IAAA,UA8E+B;EA3E/B,QAAA,UA2EwC;EAxExC,mBAAA,UAwEiE;EArEjE,eAAA;EAGA,iBAAA;EAGA,OAAA;;;;;EAMA,cAAA;EAGA,sBAAA;EAGA,gBAAA,GAAmB,MAAA;EAGnB,cAAA;EAGA,OAAA;EAGA,eAAA;EAGA,cAAA;EAGA,OAAA;;;;;EAMA,OAAA,EAAS,MAAA,SAAe,cAAA;EAGxB,SAAA;;;;;EAMA,IAAA;;;;;EAMA,GAAA,GAAM,SAAA;EAGN,YAAA;+EAEE,cAAA,EAAgB,GAAA;IAEhB,WAAA,EAAa,GAAA;EAAA;AAAA;;;;;KAQL,YAAA,GAAe,MAAA,SAAe,WAAA,GAAc,WAAA"}
|
package/dist/src/types.d.mts
CHANGED
|
@@ -1,56 +1,97 @@
|
|
|
1
1
|
//#region src/types.d.ts
|
|
2
|
+
/**
|
|
3
|
+
* Standard source map v3 object mapping generated code back to original sources.
|
|
4
|
+
*
|
|
5
|
+
* @see https://sourcemaps.info/spec.html
|
|
6
|
+
* @see https://github.com/rollup/rollup/blob/master/src/rollup/types.d.ts#L98
|
|
7
|
+
* @see https://github.com/rolldown/rolldown/blob/main/packages/rolldown/src/types/rolldown-output.ts#L26
|
|
8
|
+
*/
|
|
9
|
+
type SourceMap = {
|
|
10
|
+
/** Name of the generated file this source map corresponds to. */file: string; /** Base64 VLQ-encoded string describing the source mappings. */
|
|
11
|
+
mappings: string; /** Original symbol names referenced by the mappings. */
|
|
12
|
+
names: string[]; /** Paths to the original source files. */
|
|
13
|
+
sources: string[]; /** Optional inline content of each original source file, parallel to `sources`. */
|
|
14
|
+
sourcesContent?: string[] | undefined; /** Source map specification version — always `3`. */
|
|
15
|
+
version: number;
|
|
16
|
+
};
|
|
2
17
|
/**
|
|
3
18
|
* A generated asset entry in the output bundle (e.g. CSS, images, JSON).
|
|
19
|
+
*
|
|
20
|
+
* @see https://github.com/rollup/rollup/blob/master/src/rollup/types.d.ts#L958
|
|
21
|
+
* @see https://github.com/rolldown/rolldown/blob/main/packages/rolldown/src/types/rolldown-output.ts#L85
|
|
4
22
|
*/
|
|
5
23
|
type OutputAsset = {
|
|
6
|
-
type: 'asset'; /**
|
|
7
|
-
names: string[];
|
|
8
|
-
/**
|
|
9
|
-
* The asset content as a string (text assets) or a `Uint8Array` (binary assets).
|
|
10
|
-
* Available when options.stats.source = true (default false)
|
|
11
|
-
*/
|
|
12
|
-
source?: string | Uint8Array; /** The emitted file name of the asset relative to the output directory. */
|
|
24
|
+
type: 'asset'; /** The emitted file name of the asset relative to the output directory. */
|
|
13
25
|
fileName: string;
|
|
14
26
|
/**
|
|
15
|
-
*
|
|
16
|
-
*
|
|
27
|
+
* The asset name, or `undefined` when not available.
|
|
28
|
+
* @deprecated Use `names` instead.
|
|
17
29
|
*/
|
|
18
|
-
|
|
30
|
+
name: string | undefined; /** All entry names that reference this asset. */
|
|
31
|
+
names: string[];
|
|
19
32
|
/**
|
|
20
33
|
* The original file name of the source asset before any transformations, or `null` when not applicable.
|
|
21
34
|
* @deprecated Use `originalFileNames` instead.
|
|
22
35
|
*/
|
|
23
36
|
originalFileName: string | null; /** The original file names of the source assets before any transformations. */
|
|
24
|
-
originalFileNames: string[];
|
|
37
|
+
originalFileNames: string[];
|
|
38
|
+
/**
|
|
39
|
+
* The asset content as a string (text assets) or a `Uint8Array` (binary assets).
|
|
40
|
+
* Available when options.stats.source = true (default false)
|
|
41
|
+
*/
|
|
42
|
+
source?: string | Uint8Array;
|
|
43
|
+
/**
|
|
44
|
+
* Rollup - Whether this asset requires a code reference (`import.meta.ROLLUP_FILE_URL_<id>`)
|
|
45
|
+
* to be included in the bundle.
|
|
46
|
+
*
|
|
47
|
+
* @see https://github.com/rollup/rollup/issues/4774
|
|
48
|
+
*/
|
|
49
|
+
needsCodeReference?: boolean; /** Vite - specific metadata */
|
|
25
50
|
viteMetadata?: {
|
|
26
51
|
/** Set of asset file names imported by this asset (e.g. images referenced in CSS). */importedAssets: Set<string>; /** Set of CSS file names imported by this asset. */
|
|
27
52
|
importedCss: Set<string>;
|
|
28
53
|
};
|
|
29
54
|
};
|
|
30
55
|
/**
|
|
31
|
-
*
|
|
56
|
+
* Stats for an individual module included in an output chunk.
|
|
57
|
+
* @see https://github.com/rollup/rollup/blob/master/src/rollup/types.d.ts#L963
|
|
58
|
+
* @see https://github.com/rolldown/rolldown/blob/main/packages/rolldown/src/types/rolldown-output.ts#L40
|
|
32
59
|
*/
|
|
33
|
-
type
|
|
34
|
-
type: 'chunk';
|
|
60
|
+
type RenderedModule = {
|
|
35
61
|
/**
|
|
36
|
-
* The
|
|
37
|
-
*
|
|
62
|
+
* The module code that Vite/Rolldown/Rollup included in the bundle, or `null` when the
|
|
63
|
+
* module was fully tree-shaken.
|
|
64
|
+
* Available only when options.stats.source = true (default false)
|
|
38
65
|
*/
|
|
66
|
+
readonly code?: string | null; /** Size of the original module source in bytes, before any transformations. */
|
|
67
|
+
originalLength: number; /** Rollup - exports removed from this module by tree-shaking. */
|
|
68
|
+
removedExports?: string[]; /** Exports from this module that are retained in the final bundle. */
|
|
69
|
+
renderedExports: string[]; /** Rollup - size of the rendered module code in bytes. */
|
|
70
|
+
renderedLength?: number;
|
|
71
|
+
};
|
|
72
|
+
/**
|
|
73
|
+
* A generated JavaScript chunk entry in the output bundle.
|
|
74
|
+
*
|
|
75
|
+
* @see https://github.com/rollup/rollup/blob/master/src/rollup/types.d.ts#L992
|
|
76
|
+
* @see https://github.com/rolldown/rolldown/blob/main/packages/rolldown/src/types/rolldown-output.ts#L85
|
|
77
|
+
*/
|
|
78
|
+
type OutputChunk = {
|
|
79
|
+
type: 'chunk'; /** The chunk name as used in `chunkFileNames` and `entryFileNames` patterns */
|
|
39
80
|
name: string; /** The emitted file name of the chunk relative to the output directory. */
|
|
40
81
|
fileName: string; /** The file name of this chunk before content hashes are applied. */
|
|
41
|
-
preliminaryFileName: string; /**
|
|
42
|
-
referencedFiles
|
|
82
|
+
preliminaryFileName: string; /** Rollup - file names of assets referenced via `import.meta.ROLLUP_FILE_URL_<id>` in this chunk. */
|
|
83
|
+
referencedFiles?: string[]; /** The file name of the source map for this chunk, or `null` when source maps are not generated. */
|
|
43
84
|
sourcemapFileName: string | null; /** Names exported by this chunk. */
|
|
44
85
|
exports: string[];
|
|
45
86
|
/**
|
|
46
87
|
* The module ID of the entry point that this chunk acts as a facade for,
|
|
47
88
|
* or `null` when this chunk is not an entry facade.
|
|
48
89
|
*/
|
|
49
|
-
facadeModuleId: string | null; /**
|
|
50
|
-
implicitlyLoadedBefore
|
|
51
|
-
importedBindings
|
|
90
|
+
facadeModuleId: string | null; /** Rollup - file names of chunks that should be loaded before this implicit entry point. */
|
|
91
|
+
implicitlyLoadedBefore?: string[]; /** Rollup - per-import binding names imported from each dependency chunk, keyed by the imported chunk's file name. */
|
|
92
|
+
importedBindings?: Record<string, string[]>; /** Whether this chunk is a dynamic entry point (i.e. produced by a dynamic `import()`). */
|
|
52
93
|
isDynamicEntry: boolean; /** Whether this chunk is a static entry point declared in the Vite/Rolldown/Rollup input options. */
|
|
53
|
-
isEntry: boolean; /**
|
|
94
|
+
isEntry: boolean; /** Rollup - whether this chunk is an implicit entry point, loaded after another entry via `implicitlyLoadedAfterOneOf`. */
|
|
54
95
|
isImplicitEntry: boolean; /** File names of chunks that are dynamically imported by this chunk. */
|
|
55
96
|
dynamicImports: string[]; /** File names of chunks that are statically imported by this chunk. */
|
|
56
97
|
imports: string[];
|
|
@@ -69,40 +110,12 @@ type OutputChunk = {
|
|
|
69
110
|
* Source map for this chunk, or `null` when source maps are not enabled.
|
|
70
111
|
* Available when options.stats.source = true (default: false)
|
|
71
112
|
*/
|
|
72
|
-
map?: SourceMap | null; /** Optional
|
|
113
|
+
map?: SourceMap | null; /** Vite - Optional specific metadata */
|
|
73
114
|
viteMetadata?: {
|
|
74
115
|
/** Set of asset file names imported by this chunk (e.g. images, fonts). */importedAssets: Set<string>; /** Set of CSS file names imported by this chunk. */
|
|
75
116
|
importedCss: Set<string>;
|
|
76
117
|
};
|
|
77
118
|
};
|
|
78
|
-
/**
|
|
79
|
-
* Stats for an individual module included in an output chunk.
|
|
80
|
-
*/
|
|
81
|
-
type RenderedModule = {
|
|
82
|
-
/**
|
|
83
|
-
* The module code that Vite/Rolldown/Rollup included in the bundle, or `null` when the
|
|
84
|
-
* module was fully tree-shaken.
|
|
85
|
-
* Available only when options.stats.source = true (default false)
|
|
86
|
-
*/
|
|
87
|
-
readonly code?: string | null; /** Size of the original module source in bytes, before any transformations. */
|
|
88
|
-
originalLength: number; /** Exports removed from this module by tree-shaking. */
|
|
89
|
-
removedExports: string[]; /** Exports from this module that are retained in the final bundle. */
|
|
90
|
-
renderedExports: string[]; /** Size of the rendered module code in bytes. */
|
|
91
|
-
renderedLength: number;
|
|
92
|
-
};
|
|
93
|
-
/**
|
|
94
|
-
* Standard source map v3 object mapping generated code back to original sources.
|
|
95
|
-
*
|
|
96
|
-
* @see https://sourcemaps.info/spec.html
|
|
97
|
-
*/
|
|
98
|
-
type SourceMap = {
|
|
99
|
-
/** Name of the generated file this source map corresponds to. */file: string; /** Base64 VLQ-encoded string describing the source mappings. */
|
|
100
|
-
mappings: string; /** Original symbol names referenced by the mappings. */
|
|
101
|
-
names: string[]; /** Paths to the original source files. */
|
|
102
|
-
sources: string[]; /** Optional inline content of each original source file, parallel to `sources`. */
|
|
103
|
-
sourcesContent?: string[] | undefined; /** Source map specification version — always `3`. */
|
|
104
|
-
version: number;
|
|
105
|
-
};
|
|
106
119
|
/**
|
|
107
120
|
* The complete output bundle produced by Vite/Rolldown/Rollup — a map from emitted file name
|
|
108
121
|
* to its corresponding asset or chunk descriptor.
|
package/dist/src/types.d.mts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.mts","names":[],"sources":["../../src/types.ts"],"mappings":";;
|
|
1
|
+
{"version":3,"file":"types.d.mts","names":[],"sources":["../../src/types.ts"],"mappings":";;AAOA;;;;;;KAAY,SAAA;EAQV,iEANA,IAAA,UAUA;EARA,QAAA,UAQO;EANP,KAAA,YAeqB;EAbrB,OAAA,YAyCkB;EAvClB,cAAA,yBAsDe;EApDf,OAAA;AAAA;;;;;;;KASU,WAAA;EACV,IAAA,WAmCA;EAhCA,QAAA;EAqCE;;;;EA/BF,IAAA,sBAiCkB;EA9BlB,KAAA;EAuCwB;;;;EAjCxB,gBAAA,iBA6CA;EA1CA,iBAAA;EAgDA;;;AASF;EAnDE,MAAA,YAAkB,UAAA;;;;;;;EAQlB,kBAAA,YAqHkB;EAlHlB,YAAA;IAyCA,sFAvCE,cAAA,EAAgB,GAAA,UA6ClB;IA3CE,WAAA,EAAa,GAAA;EAAA;AAAA;;;;;;KASL,cAAA;EAgEV;;;;;EAAA,SA1DS,IAAA,kBAyEe;EAtExB,cAAA,UA+EA;EA5EA,cAAA,aAkFM;EA/EN,eAAA,YAoFE;EAjFF,cAAA;AAAA;;;;AA2FF;;;KAlFY,WAAA;EACV,IAAA,WAiFyB;EA9EzB,IAAA,UA8E+B;EA3E/B,QAAA,UA2EwC;EAxExC,mBAAA,UAwEiE;EArEjE,eAAA;EAGA,iBAAA;EAGA,OAAA;;;;;EAMA,cAAA;EAGA,sBAAA;EAGA,gBAAA,GAAmB,MAAA;EAGnB,cAAA;EAGA,OAAA;EAGA,eAAA;EAGA,cAAA;EAGA,OAAA;;;;;EAMA,OAAA,EAAS,MAAA,SAAe,cAAA;EAGxB,SAAA;;;;;EAMA,IAAA;;;;;EAMA,GAAA,GAAM,SAAA;EAGN,YAAA;+EAEE,cAAA,EAAgB,GAAA;IAEhB,WAAA,EAAa,GAAA;EAAA;AAAA;;;;;KAQL,YAAA,GAAe,MAAA,SAAe,WAAA,GAAc,WAAA"}
|