@20minutes/tyr 0.1.70 → 0.1.71
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/assets/scripts/thirdParties/ads/adSlotsKeyValues.d.ts +1 -0
- package/dist/assets/scripts/thirdParties/ads/dfpAdSlots.d.ts +4 -0
- package/dist/assets/scripts/thirdParties/ads/dfpCall.d.ts +2 -0
- package/dist/assets/scripts/thirdParties/ads/dfpConfig.d.ts +1 -0
- package/dist/assets/scripts/thirdParties/ads/dfpDatalayerAdapter.d.ts +2 -0
- package/dist/assets/scripts/thirdParties/ads/index.d.ts +7 -0
- package/dist/assets/scripts/thirdParties/ads/placeholderHandler.d.ts +1 -0
- package/dist/index.es.js +2055 -2038
- package/dist/index.umd.js +61 -61
- package/dist/js/ads.min.js +1 -1
- package/dist/js/main.min.js +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const setAdSlotsKeyValues: () => void;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import type { TargetingType } from '../../../../types/ThirdParties';
|
|
2
|
+
export declare const adDefinedEvent = "adDefined";
|
|
3
|
+
export declare const initDfpSlot: (slot: HTMLDivElement, targeting?: Partial<TargetingType>) => void;
|
|
4
|
+
export declare const setDfpSlots: (targeting?: Partial<TargetingType>) => void;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const setDfpConfig: () => void;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const placeholderHandler: () => void;
|