@rollup/browser 3.22.1 → 3.23.1

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.
@@ -150,7 +150,15 @@ export interface EmittedChunk {
150
150
  type: 'chunk';
151
151
  }
152
152
 
153
- export type EmittedFile = EmittedAsset | EmittedChunk;
153
+ export interface EmittedPrebuiltChunk {
154
+ code: string;
155
+ exports?: string[];
156
+ fileName: string;
157
+ map?: SourceMap;
158
+ type: 'prebuilt-chunk';
159
+ }
160
+
161
+ export type EmittedFile = EmittedAsset | EmittedChunk | EmittedPrebuiltChunk;
154
162
 
155
163
  export type EmitFile = (emittedFile: EmittedFile) => string;
156
164