video-ad-sdk
Version:
VAST/VPAID SDK that allows video ads to be played on top of any player
8 lines (7 loc) • 320 B
TypeScript
import type { VastIcon, RenderedVastIcon } from '../../../types';
interface UpdateIconOptions {
drawnIcons: RenderedVastIcon[];
placeholder: HTMLElement;
}
export declare const updateIcon: (icon: VastIcon, iconElement: HTMLElement, { drawnIcons, placeholder }: UpdateIconOptions) => RenderedVastIcon;
export {};