@rollup/browser 4.34.8 → 4.34.9
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
|
@@ -212,7 +212,10 @@ interface ModuleInfo extends ModuleOptions {
|
|
|
212
212
|
|
|
213
213
|
export type GetModuleInfo = (moduleId: string) => ModuleInfo | null;
|
|
214
214
|
|
|
215
|
-
|
|
215
|
+
// eslint-disable-next-line @typescript-eslint/consistent-indexed-object-style -- this is an interface so that it can be extended by plugins
|
|
216
|
+
export interface CustomPluginOptions {
|
|
217
|
+
[plugin: string]: any;
|
|
218
|
+
}
|
|
216
219
|
|
|
217
220
|
type LoggingFunctionWithPosition = (
|
|
218
221
|
log: RollupLog | string | (() => RollupLog | string),
|