UNPKG

tdesign-react

Version:
10 lines (9 loc) 407 B
import React from 'react'; import { PaginationProps } from '../../pagination'; import type { TableRowData, TdBaseTableProps } from '../type'; export default function usePagination(props: TdBaseTableProps, tableContentRef: React.RefObject<HTMLDivElement>): { isPaginateData: boolean; dataSource: TableRowData[]; innerPagination: PaginationProps; renderPagination: () => React.JSX.Element; };