File

src/lib/types/MovieData.ts

Description

The MovieData interface is used to cast data to specific format when retrieving it from the TMDB API.

Properties

genreIds
genreIds: number[]
Type : number[]
id
id: number
Type : number
imagePath
imagePath: string
Type : string
overview
overview: string
Type : string
releaseDate
releaseDate: string
Type : string
title
title: string
Type : string
export interface MovieData {
    id: number;
    title: string;
    overview: string;
    imagePath: string;
    releaseDate: string;
    genreIds: number[];
}

results matching ""

    No results matching ""