]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - client/src/app/shared/rest/rest-pagination.ts
Optimize list my playlists SQL query
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / rest / rest-pagination.ts
index 766e7a9e5cf91ba24bd674a55b167abb97050e03..0faa593032015ee8c60608fe076a3c0a9e005784 100644 (file)
@@ -1,5 +1,4 @@
 export interface RestPagination {
-  currentPage: number
-  itemsPerPage: number
-  totalItems: number
+  start: number
+  count: number
 }