Files
klz-cables.com/.pnpm-store/v10/files/7e/817b55f9c6202a5be348a30c5b26067c92c5084a792e4c22190e12a762e74119b135850931fc95ff4b7c119fb177947e2cf13209f76d80c564646f71457521
Marc Mintel 5397309103
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

26 lines
717 B
Plaintext

import React from 'react';
import './index.scss';
export type PaginationProps = {
hasNextPage?: boolean;
hasPrevPage?: boolean;
limit?: number;
nextPage?: number;
numberOfNeighbors?: number;
onChange?: (page: number) => void;
page?: number;
prevPage?: number;
totalPages?: number;
};
export type Node = {
props?: {
direction?: 'left' | 'right';
isDisabled?: boolean;
isFirstPage?: boolean;
isLastPage?: boolean;
page?: number;
updatePage: (page?: number) => void;
};
type: 'ClickableArrow' | 'Page' | 'Separator';
} | number;
export declare const Pagination: React.FC<PaginationProps>;
//# sourceMappingURL=index.d.ts.map