Skip to main content
The Deno 2 Release Candidate is here
Learn more
Module

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

Deno Standard Extensions
Latest
interface TextTrackCueList
import { type TextTrackCueList } from "https://deno.land/x/yxz@0.32.0/typing/lib.dom.ts";

Properties

readonly
length: number

Returns the number of cues in the list.

Methods

getCueById(id: string): TextTrackCue | null

Returns the first text track cue (in text track cue order) with text track cue identifier id.

Returns null if none of the cues have the given identifier or if the argument is the empty string.