happy-dom
Version:
Happy DOM is a JavaScript implementation of a web browser without its graphical user interface. It includes many web standards from WHATWG DOM and HTML.
19 lines • 533 B
TypeScript
import TextTrackCue from './TextTrackCue.cjs';
/**
*
*/
export default class TextTrackCueList extends Array<TextTrackCue> {
/**
* Constructor.
*
* @param [illegalConstructorSymbol] Illegal constructor symbol.
*/
constructor(illegalConstructorSymbol?: symbol);
/**
* Returns the first TextTrackCue object with the identifier passed to it.
*
* @param id Text track cue identifier.
*/
getCueById(id: string): TextTrackCue | null;
}
//# sourceMappingURL=TextTrackCueList.d.ts.map