@datadog/webpack-plugin 3.2.9-dev.7 → 3.2.10

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.
@@ -5234,12 +5234,7 @@ type BundlerReport = GlobalData["bundler"] & {
5234
5234
  outDir: string;
5235
5235
  rawConfig?: any;
5236
5236
  };
5237
- type ChunkInfo = {
5238
- sourceOrHash: string;
5239
- fileName: string;
5240
- isEntry: boolean;
5241
- };
5242
- type InjectedValue = string | (() => Promise<string>) | ((chunk?: ChunkInfo) => string);
5237
+ type InjectedValue = string | (() => Promise<string>) | ((sourceOrHash?: string) => string);
5243
5238
  declare enum InjectPosition {
5244
5239
  BEFORE = 0,
5245
5240
  MIDDLE = 1,