@rollup/browser 3.9.0 → 3.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.
@@ -216,6 +216,7 @@ export interface PluginContextMeta {
216
216
  export interface ResolvedId extends ModuleOptions {
217
217
  external: boolean | 'absolute';
218
218
  id: string;
219
+ resolvedBy: string;
219
220
  }
220
221
 
221
222
  export interface ResolvedIdMap {
@@ -225,10 +226,13 @@ export interface ResolvedIdMap {
225
226
  interface PartialResolvedId extends Partial<PartialNull<ModuleOptions>> {
226
227
  external?: boolean | 'absolute' | 'relative';
227
228
  id: string;
229
+ resolvedBy?: string;
228
230
  }
229
231
 
230
232
  export type ResolveIdResult = string | NullValue | false | PartialResolvedId;
231
233
 
234
+ export type ResolveIdResultWithoutNullValue = string | false | PartialResolvedId;
235
+
232
236
  export type ResolveIdHook = (
233
237
  this: PluginContext,
234
238
  source: string,