@svta/common-media-library
Version:
A common library for media playback in JavaScript
22 lines • 458 B
TypeScript
import type { ValueOf } from '../utils/ValueOf.js';
/**
* WebVTT result types.
*
* @group WebVTT
*
* @beta
*
* @enum
*/
export declare const WebVttResultType: {
readonly CUE: "cue";
readonly REGION: "region";
readonly TIMESTAMP_MAP: "timestampmap";
readonly STYLE: "style";
readonly ERROR: "error";
};
/**
* @beta
*/
export type WebVttResultType = ValueOf<typeof WebVttResultType>;
//# sourceMappingURL=WebVttResultType.d.ts.map