• 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
  • TMDB.ts
  • Bruno Predot's avatar
    Ajout interface/response/TMDB. · ec1060da ...
    ec1060da Browse Files
    Factorisation du composable tMDB afin de remplacer les appels fetch natif par useFetch.
    Bruno Predot authored 2025-05-18 13:15:42 +0200
TMDB.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;
}