@werk1/w1-system-videoblock
Version:
Universal video player supporting YouTube, Vimeo, HLS, DASH with coordination and GSAP integration for W1 System
14 lines (13 loc) • 422 B
TypeScript
/**
* Vimeo Platform Integration
* Handles Vimeo Player API loading and player management
*/
import type { VimeoPlayer, VimeoSetupOptions } from "../types";
/**
* Loads the Vimeo Player API
*/
export declare function loadVimeoAPI(): Promise<boolean>;
/**
* Sets up Vimeo player
*/
export declare function setupVimeoPlayback(container: HTMLElement, videoId: string, options?: VimeoSetupOptions): VimeoPlayer | null;