UNPKG

video-ad-sdk

Version:

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

10 lines (9 loc) 397 B
import type { VastIcon } from '../../../types'; import type { VideoAdContainer } from '../../../adContainer'; interface RenderIconsOptions { videoAdContainer: VideoAdContainer; logger?: Console; onIconClick?(icon: VastIcon): void; } export declare const renderIcons: (icons: VastIcon[], { onIconClick, videoAdContainer, logger }: RenderIconsOptions) => Promise<VastIcon[]>; export {};