StreamingEpisode is an interface representing a streaming episode. It includes the title, thumbnail, url, and site each having their own properties.

interface StreamingEpisode {
    site: string;
    thumbnail: string;
    title: string;
    url: string;
}

Properties

Properties

site: string

site is a string representing the site of the streaming episode.

thumbnail: string

thumbnail is a string representing the thumbnail of the streaming episode.

title: string

title is a string representing the title of the streaming episode.

url: string

url is a string representing the url of the streaming episode.