@rollup/browser 4.19.1 → 4.20.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.
@@ -161,6 +161,7 @@ export interface EmittedAsset {
161
161
  fileName?: string;
162
162
  name?: string;
163
163
  needsCodeReference?: boolean;
164
+ originalFileName?: string | null;
164
165
  source?: string | Uint8Array;
165
166
  type: 'asset';
166
167
  }
@@ -821,6 +822,7 @@ export interface SerializedTimings {
821
822
 
822
823
  export interface PreRenderedAsset {
823
824
  name: string | undefined;
825
+ originalFileName: string | null;
824
826
  source: string | Uint8Array;
825
827
  type: 'asset';
826
828
  }