Trailer is an interface representing a trailer. It includes the id, site, and thumbnail each having their own properties.

interface Trailer {
    id: string;
    site: string;
    thumbnail: string;
}

Properties

Properties

id: string

id is a string representing the id of the trailer.

site: string

site is a string representing the site of the trailer.

thumbnail: string

thumbnail is a string representing the thumbnail of the trailer.