tdesign-react
Version:
TDesign Component for React
10 lines (9 loc) • 407 B
TypeScript
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;
};