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;
}

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