]> 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 0cfa4f4681aee7bcb4102d057d9da20f203e7c6e..0faa593032015ee8c60608fe076a3c0a9e005784 100644 (file)
@@ -1,5 +1,4 @@
 export interface RestPagination {
-  currentPage: number;
-  itemsPerPage: number;
-  totalItems: number;
-};
+  start: number
+  count: number
+}