Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/yxz/typing/lib.dom.ts>TextTrackCue

Deno Standard Extensions
Go to Latest
interface TextTrackCue
implements EventTarget
import { type TextTrackCue } from "https://deno.land/x/yxz@0.17.0/typing/lib.dom.ts";

TextTrackCues represent a string of text that will be displayed for some duration of time on a TextTrack. This includes the start and end times that the cue will be displayed. A TextTrackCue cannot be used directly, instead one of the derived types (e.g. VTTCue) must be used.

Properties

endTime: number

Returns the text track cue end time, in seconds.

Can be set.

id: string

Returns the text track cue identifier.

Can be set.

onenter: ((this: TextTrackCue, ev: Event) => any) | null
onexit: ((this: TextTrackCue, ev: Event) => any) | null
pauseOnExit: boolean

Returns true if the text track cue pause-on-exit flag is set, false otherwise.

Can be set.

startTime: number

Returns the text track cue start time, in seconds.

Can be set.

readonly
track: TextTrack | null

Returns the TextTrack object to which this text track cue belongs, if any, or null otherwise.

Methods

addEventListener<K extends keyof TextTrackCueEventMap>(
type: K,
listener: (this: TextTrackCue, ev: TextTrackCueEventMap[K]) => any,
options?: boolean | AddEventListenerOptions,
): void
addEventListener(
type: string,
options?: boolean | AddEventListenerOptions,
): void
removeEventListener<K extends keyof TextTrackCueEventMap>(
type: K,
listener: (this: TextTrackCue, ev: TextTrackCueEventMap[K]) => any,
options?: boolean | EventListenerOptions,
): void
removeEventListener(
type: string,
options?: boolean | EventListenerOptions,
): void