Details of a season.

Export

Season

interface Season {
    episodes: Episode[];
    firstAirYear: number;
    lastAirYear: number;
    streamingInfo: {
        [key: string]: StreamingOption[];
    };
    title: string;
    type: "season";
}

Properties

episodes: Episode[]

Array of the episodes belong to the season.

Memberof

Season

firstAirYear: number

The first year that the season aired.

Memberof

Season

lastAirYear: number

The last year that the season aired.

Memberof

Season

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

Country to streaming availability info mapping of a show.

Type declaration

Memberof

Season

title: string

Title of the season.

Memberof

Season

type: "season"

Type of the item. Always "season".

Memberof

Season

Generated using TypeDoc