]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/shared/rest/rest-pagination.ts
Client: handle the case when the refreshing token step fails
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / rest / rest-pagination.ts
1 export interface RestPagination {
2 currentPage: number;
3 itemsPerPage: number;
4 totalItems: number;
5 };