UNPKG

@ackplus/react-tanstack-data-table

Version:

A powerful React data table component built with MUI and TanStack Table

18 lines 678 B
import { TablePaginationProps, SxProps } from '@mui/material'; import { ReactNode } from 'react'; export interface DataTablePaginationProps extends Omit<TablePaginationProps, 'count' | 'rowsPerPage' | 'page' | 'onPageChange' | 'onRowsPerPageChange'> { totalRow: number; footerFilter?: ReactNode | null; pagination: { pageIndex: number; pageSize: number; }; containerSx?: SxProps; paginationProps?: TablePaginationProps; footerSx?: SxProps; slots?: Record<string, any>; slotProps?: Record<string, any>; [key: string]: any; } export declare const DataTablePagination: any; //# sourceMappingURL=data-table-pagination.d.ts.map