@svta/common-media-library
Version:
A common library for media playback in JavaScript
13 lines • 319 B
TypeScript
import type { CaptionScreen } from './CaptionScreen.js';
/**
* A handler for CTA-608 cues.
*
* @group CTA-608
* @beta
*/
export type CueHandler = {
newCue(startTime: number, endTime: number, screen: CaptionScreen): void;
reset?(): void;
dispatchCue?(): void;
};
//# sourceMappingURL=CueHandler.d.ts.map