@rollup/browser 3.6.0-0 → 3.6.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.
@@ -157,6 +157,8 @@ interface ModuleInfo extends ModuleOptions {
157
157
  dynamicImporters: readonly string[];
158
158
  dynamicallyImportedIdResolutions: readonly ResolvedId[];
159
159
  dynamicallyImportedIds: readonly string[];
160
+ exportedBindings: Record<string, string[]> | null;
161
+ exports: string[] | null;
160
162
  hasDefaultExport: boolean | null;
161
163
  /** @deprecated Use `moduleSideEffects` instead */
162
164
  hasModuleSideEffects: boolean | 'no-treeshake';
@@ -927,3 +929,8 @@ interface AcornNode {
927
929
 
928
930
  export function defineConfig(options: RollupOptions): RollupOptions;
929
931
  export function defineConfig(options: RollupOptions[]): RollupOptions[];
932
+ export function defineConfig(optionsFunction: RollupOptionsFunction): RollupOptionsFunction;
933
+
934
+ export type RollupOptionsFunction = (
935
+ commandLineArguments: Record<string, any>
936
+ ) => MaybePromise<RollupOptions | RollupOptions[]>;