PeerTube/client/src/app/shared/rest/rest-pagination.ts

6 lines
106 B
TypeScript

export interface RestPagination {
currentPage: number;
itemsPerPage: number;
totalItems: number;
};