import BasicMediaInfo from './BasicMediaInfo'; /** * @export * @class VttMediaInfo */ export declare class VttMediaInfo extends BasicMediaInfo { /** * The URL of the referenced VTT file (required) * @type {string} * @memberof VttMediaInfo */ vttUrl?: string; /** * The URI of the Rendition (required) * @type {string} * @memberof VttMediaInfo */ uri?: string; /** * A value of true indicates that the Rendition contains content which is considered essential to play. * @type {boolean} * @memberof VttMediaInfo */ forced?: boolean; constructor(obj?: Partial); } export default VttMediaInfo;