@rollup/browser 3.27.1 → 3.28.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
|
@@ -827,7 +827,7 @@ export interface OutputAsset extends PreRenderedAsset {
|
|
|
827
827
|
}
|
|
828
828
|
|
|
829
829
|
export interface RenderedModule {
|
|
830
|
-
code: string | null;
|
|
830
|
+
readonly code: string | null;
|
|
831
831
|
originalLength: number;
|
|
832
832
|
removedExports: string[];
|
|
833
833
|
renderedExports: string[];
|
|
@@ -862,6 +862,7 @@ export interface RenderedChunk extends PreRenderedChunk {
|
|
|
862
862
|
export interface OutputChunk extends RenderedChunk {
|
|
863
863
|
code: string;
|
|
864
864
|
map: SourceMap | null;
|
|
865
|
+
preliminaryFileName: string;
|
|
865
866
|
}
|
|
866
867
|
|
|
867
868
|
export interface SerializablePluginCache {
|