UNPKG

video-ad-sdk

Version:

VAST/VPAID SDK that allows video ads to be played on top of any player

10 lines (9 loc) 405 B
import type { ParsedAd } from '../../types'; declare const requested: unique symbol; interface RequestableParsedAd extends ParsedAd { [requested]?: boolean; } export declare const markAdAsRequested: (ad: RequestableParsedAd) => void; export declare const unmarkAdAsRequested: (ad: RequestableParsedAd) => void; export declare const hasAdBeenRequested: (ad: RequestableParsedAd) => boolean; export {};