rickvanlieshout.com/src/types/pagination.ts

10 lines
172 B
TypeScript
Raw Normal View History

interface Pagination {
currentPage: number;
prevPagePath: string;
nextPagePath: string;
hasPrevPage: boolean;
hasNextPage: boolean;
}
export default Pagination;