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