@rollup/browser 4.52.5 → 4.53.0
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/rollup.browser.d.ts
CHANGED
|
@@ -125,6 +125,7 @@ export interface SourceDescription extends Partial<PartialNull<ModuleOptions>> {
|
|
|
125
125
|
export interface TransformModuleJSON {
|
|
126
126
|
ast?: ProgramNode | undefined;
|
|
127
127
|
code: string;
|
|
128
|
+
safeVariableNames: Record<string, string> | null;
|
|
128
129
|
// note if plugins use new this.cache to opt-out auto transform cache
|
|
129
130
|
customTransformCache: boolean;
|
|
130
131
|
originalCode: string;
|
|
@@ -134,6 +135,7 @@ export interface TransformModuleJSON {
|
|
|
134
135
|
}
|
|
135
136
|
|
|
136
137
|
export interface ModuleJSON extends TransformModuleJSON, ModuleOptions {
|
|
138
|
+
safeVariableNames: Record<string, string> | null;
|
|
137
139
|
ast: ProgramNode;
|
|
138
140
|
dependencies: string[];
|
|
139
141
|
id: string;
|
|
@@ -198,6 +200,7 @@ export interface ModuleInfo extends ModuleOptions {
|
|
|
198
200
|
dynamicallyImportedIds: readonly string[];
|
|
199
201
|
exportedBindings: Record<string, string[]> | null;
|
|
200
202
|
exports: string[] | null;
|
|
203
|
+
safeVariableNames: Record<string, string> | null;
|
|
201
204
|
hasDefaultExport: boolean | null;
|
|
202
205
|
id: string;
|
|
203
206
|
implicitlyLoadedAfterOneOf: readonly string[];
|