• This project
    • Loading...
  • Sign in

Bruno Predot / tmdb_test

Go to a project
Toggle navigation Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • tmdb_test
  • interfaces
  • movie.ts
  • Bruno Predot's avatar
    Création MovieInterface · 21e5205c
    21e5205c Browse Files
    Bruno Predot authored 2025-04-24 14:41:39 +0200
movie.ts 144 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7
export interface MovieInterface {
  id: number;
  title: string;
  poster_path: string | null;
  vote_average: number;
  release_date: string;
}