mirror of
https://github.com/mastermindzh/rickvanlieshout.com
synced 2024-12-28 15:58:33 +01:00
10 lines
172 B
TypeScript
10 lines
172 B
TypeScript
interface Pagination {
|
|
currentPage: number;
|
|
prevPagePath: string;
|
|
nextPagePath: string;
|
|
hasPrevPage: boolean;
|
|
hasNextPage: boolean;
|
|
}
|
|
|
|
export default Pagination;
|