@datadog/rollup-plugin 3.2.7 → 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.
- package/dist/src/index.d.ts +6 -1
- package/dist/src/index.js +1 -1
- package/dist/src/index.js.map +1 -1
- package/dist/src/index.mjs +1 -1
- package/dist/src/index.mjs.map +1 -1
- package/package.json +3 -2
package/dist/src/index.d.ts
CHANGED
|
@@ -5234,7 +5234,12 @@ type BundlerReport = GlobalData["bundler"] & {
|
|
|
5234
5234
|
outDir: string;
|
|
5235
5235
|
rawConfig?: any;
|
|
5236
5236
|
};
|
|
5237
|
-
type
|
|
5237
|
+
type ChunkInfo = {
|
|
5238
|
+
sourceOrHash: string;
|
|
5239
|
+
fileName: string;
|
|
5240
|
+
isEntry: boolean;
|
|
5241
|
+
};
|
|
5242
|
+
type InjectedValue = string | (() => Promise<string>) | ((chunk?: ChunkInfo) => string);
|
|
5238
5243
|
declare enum InjectPosition {
|
|
5239
5244
|
BEFORE = 0,
|
|
5240
5245
|
MIDDLE = 1,
|