UNPKG

video-ad-sdk

Version:

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

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