Created
December 1, 2022 14:34
-
-
Save senaev/dfbc494b8463cc587e56584987ffdd18 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| interface Window { | |
| initAdServingVerification: (params: { | |
| slot: HTMLElement; // рекламный контейнер (по нему мы сами замеряем видимость) | |
| // различные идентификаторы (рекламной кампании, баннеров, верификации) | |
| adIds: { | |
| campaign: string; // пример '1111111111' | |
| ad: string; // пример '2222222222' | |
| sessionId: string; // будет где-то в квери-параметрах | |
| }; | |
| vpaidAd: VpaidInstance; | |
| }) => void; | |
| }; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment