PeerTube/client/app/videos/shared/pagination.model.ts

6 lines
96 B
TypeScript

export interface Pagination {
currentPage: number;
itemsPerPage: number;
total: number;
}