@byomakase/omakase-player
    Preparing search index...

    Interface MarkerListConfig

    interface MarkerListConfig {
        emptyHTMLElementId?: string;
        headerHTMLElementId?: string;
        loadingHTMLElementId?: string;
        markerListHTMLElementId: string;
        nameEditable?: boolean;
        nameOptions?: string[];
        nameValidationFn?: (name: string) => boolean;
        source?: MarkerAwareApi | MarkerAwareApi[];
        styleUrl?: string | string[];
        templateHTMLElementId?: string;
        thumbnailFn?: (time: number) => undefined | string;
        thumbnailVttFile?: ThumbnailVttFile;
        timeEditable?: boolean;
        vttLoadOptions?: VttLoadOptions;
        vttMarkerCreateFn?: (marker: MarkerVttCue, index: number) => MarkerListItem;
        vttUrl?: string;
    }
    Index

    Properties

    emptyHTMLElementId?: string
    headerHTMLElementId?: string
    loadingHTMLElementId?: string
    markerListHTMLElementId: string
    nameEditable?: boolean
    nameOptions?: string[]
    nameValidationFn?: (name: string) => boolean
    source?: MarkerAwareApi | MarkerAwareApi[]
    styleUrl?: string | string[]
    templateHTMLElementId?: string
    thumbnailFn?: (time: number) => undefined | string
    thumbnailVttFile?: ThumbnailVttFile
    timeEditable?: boolean
    vttLoadOptions?: VttLoadOptions
    vttMarkerCreateFn?: (marker: MarkerVttCue, index: number) => MarkerListItem
    vttUrl?: string