copper-ui
Version:
Modern React UI components library with TypeScript support, built on top of Ant Design
8 lines • 340 B
TypeScript
type TTablePaginationProps = {
totalPages: number;
currentPage: number;
onPageChange: (page: number) => void;
};
declare const TablePagination: ({ totalPages, currentPage, onPageChange, }: TTablePaginationProps) => import("react/jsx-runtime").JSX.Element;
export default TablePagination;
//# sourceMappingURL=pagination.d.ts.map