UNPKG

video.js

Version:

An HTML5 video player that supports HLS and DASH with a common API and skin.

20 lines 578 B
/** * Set up any tags that have a data-setup `attribute` when the player is started. */ export function autoSetup(): void; /** * Wait until the page is loaded before running autoSetup. This will be called in * autoSetup if `hasLoaded` returns false. * * @param {number} wait * How long to wait in ms * * @param {module:videojs} [vjs] * The videojs library function */ export function autoSetupTimeout(wait: number, vjs?: any): void; /** * check if the window has been loaded */ export function hasLoaded(): boolean; //# sourceMappingURL=setup.d.ts.map