UNPKG

173 BTypeScriptView Raw
1export interface VideoSource {
2 source: {
3 src: string;
4 type: string;
5 }[];
6 tracks: HTMLTrackElement[];
7 attributes: HTMLVideoElement;
8}