@rollup/browser 4.9.6 → 4.10.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
|
@@ -683,6 +683,8 @@ type AddonFunction = (chunk: RenderedChunk) => string | Promise<string>;
|
|
|
683
683
|
|
|
684
684
|
type OutputPluginOption = MaybePromise<OutputPlugin | NullValue | false | OutputPluginOption[]>;
|
|
685
685
|
|
|
686
|
+
type HashCharacters = 'base64' | 'base36' | 'hex';
|
|
687
|
+
|
|
686
688
|
export interface OutputOptions {
|
|
687
689
|
amd?: AmdOptions;
|
|
688
690
|
assetFileNames?: string | ((chunkInfo: PreRenderedAsset) => string);
|
|
@@ -708,6 +710,7 @@ export interface OutputOptions {
|
|
|
708
710
|
freeze?: boolean;
|
|
709
711
|
generatedCode?: GeneratedCodePreset | GeneratedCodeOptions;
|
|
710
712
|
globals?: GlobalsOption;
|
|
713
|
+
hashCharacters?: HashCharacters;
|
|
711
714
|
hoistTransitiveImports?: boolean;
|
|
712
715
|
indent?: string | boolean;
|
|
713
716
|
inlineDynamicImports?: boolean;
|
|
@@ -758,6 +761,7 @@ export interface NormalizedOutputOptions {
|
|
|
758
761
|
freeze: boolean;
|
|
759
762
|
generatedCode: NormalizedGeneratedCodeOptions;
|
|
760
763
|
globals: GlobalsOption;
|
|
764
|
+
hashCharacters: HashCharacters;
|
|
761
765
|
hoistTransitiveImports: boolean;
|
|
762
766
|
indent: true | string;
|
|
763
767
|
inlineDynamicImports: boolean;
|