Details of an episode.

Export

Episode

interface Episode {
    streamingInfo: {
        [key: string]: StreamingOption[];
    };
    title: string;
    type: "episode";
    year: number;
}

Properties

streamingInfo: {
    [key: string]: StreamingOption[];
}

Country to streaming availability info mapping of a show.

Type declaration

Memberof

Episode

title: string

Title of the episode.

Memberof

Episode

type: "episode"

Type of the item. Always "episode".

Memberof

Episode

year: number

The year that the movie was released.

Memberof

Episode

Generated using TypeDoc