@svta/common-media-library
    Preparing search index...

    Type Alias WebVttParseResultBeta

    The result of parsing a WebVTT string.

    type WebVttParseResult = {
        cues: WebVttCue[];
        errors: WebVttParsingError[];
        regions: WebVttRegion[];
        styles: string[];
    }
    Index

    Properties

    cues: WebVttCue[]

    The cues parsed from the WebVTT string.

    The errors that occurred while parsing the WebVTT string.

    regions: WebVttRegion[]

    The regions parsed from the WebVTT string.

    styles: string[]

    The styles parsed from the WebVTT string.