UNPKG

spectatr-player-sdk

Version:

A custom video player built with Stencil with Shaka Player integration

19 lines (18 loc) 527 B
import { Suggestion } from '../../types/videoPlayer'; export declare class VideoSuggestions { handlePlaySuggestion: (id: string) => void; setSuggestions: (suggestions: Suggestion[]) => void; baseUrl: string; clientId: string; videoId: string; height: number; suggestions: Suggestion[]; page: number; limit: number; totalData: number; componentWillLoad(): Promise<void>; handleSuggestions(): void; private formatDuration; private loadMoreSuggestions; render(): any; }