• 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
  • response
  • theMovieDb.ts
  • Bruno Predot's avatar
    Changement de nom plus explicite pour interface · 6add7102
    6add7102 Browse Files
    Bruno Predot authored 2025-05-20 17:54:43 +0200
theMovieDb.ts 135 Bytes
Raw Blame History Permalink
1 2 3 4 5 6
export interface TMDBCollectionResponse {
  page: number;
  results: Array<unknown>;
  total_pages: number;
  total_results: number;
}