NextAiringEpisode is an interface representing the next airing episode of a media. It includes the airing time, time until airing, and the episode number each having their own properties.

interface NextAiringEpisode {
    airingAt: number;
    episode: number;
    timeUntilAiring: number;
}

Properties

airingAt: number

airingAt is a number representing the airing time of the next episode.

episode: number

episode is a number representing the episode number of the next airing episode.

timeUntilAiring: number

timeUntilAiring is a number representing the time until the next episode airs.