@rollup/browser 4.22.5 → 4.23.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.
@@ -815,8 +815,12 @@ export type WarningHandlerWithDefault = (
815
815
  export type SerializedTimings = Record<string, [number, number, number]>;
816
816
 
817
817
  export interface PreRenderedAsset {
818
+ /** @deprecated Use "names" instead. */
818
819
  name: string | undefined;
820
+ names: string[];
821
+ /** @deprecated Use "originalFileNames" instead. */
819
822
  originalFileName: string | null;
823
+ originalFileNames: string[];
820
824
  source: string | Uint8Array;
821
825
  type: 'asset';
822
826
  }