media-tracks
Version:
Polyfill audio and video tracks with renditions.
7 lines (6 loc) • 308 B
TypeScript
import type { AudioRendition } from './audio-rendition.js';
import type { VideoRendition } from './video-rendition.js';
export declare class RenditionEvent extends Event {
rendition: VideoRendition | AudioRendition;
constructor(type: string, init: Record<string, VideoRendition | AudioRendition>);
}