UNPKG

video-ad-sdk

Version:

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

11 lines (10 loc) 493 B
import { VideoAdContainer } from '../../../adContainer'; import type { VastChain, Hooks, CancelFunction } from '../../../types'; interface SetupMetricsHandlersOptions { vastChain: VastChain; videoAdContainer: VideoAdContainer; hooks: Hooks; pauseOnAdClick: boolean; } export declare const setupMetricHandlers: ({ vastChain, videoAdContainer, hooks, pauseOnAdClick }: SetupMetricsHandlersOptions, callback: (event: string, ...args: any[]) => void) => CancelFunction; export {};