Interface VideoEpisode

interface VideoEpisode {
    text: string;
    time: number;
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

Properties

text: string

Description of episode

time: number

Seconds from start of the video

Generated using TypeDoc