@svta/common-media-library
Version:
A common library for media playback in JavaScript
14 lines • 586 B
TypeScript
import type { WebVttCueResult } from './WebVttCueResult.js';
import type { WebVttErrorResult } from './WebVttErrorResult.js';
import type { WebVttRegionResult } from './WebVttRegionResult.js';
import type { WebVttStyleResult } from './WebVttStyleResult.js';
import type { WebVttTimestampMapResult } from './WebVttTimestampMapResult.js';
/**
* WebVTT transform stream result.
*
* @group WebVTT
*
* @beta
*/
export type WebVttResult = WebVttCueResult | WebVttRegionResult | WebVttTimestampMapResult | WebVttStyleResult | WebVttErrorResult;
//# sourceMappingURL=WebVttResult.d.ts.map