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>TextTrackCueList

Deno Standard Extensions
Go to Latest
interface TextTrackCueList
import { type TextTrackCueList } from "https://deno.land/x/yxz@0.17.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.