UNPKG

video-ad-sdk

Version:

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

9 lines (8 loc) 139 B
/** * Optional type */ export type Optional<T> = T | undefined; /** * Cancelation function */ export type CancelFunction = () => void;