import React from 'react'; import type { TableRowData, TdBaseTableProps } from '../type'; /** * 上拉加载分页 hook * 参考 usePagination 实现,内部管理分页数据,上拉触发时自动加载下一页 * 支持跟手位移效果和 loading 状态 */ export default function usePullRefresh(props: TdBaseTableProps, containerRef: React.RefObject): { dataSource: TableRowData[]; isPaginateData: boolean; pullOffset: number; isPulling: boolean; isLoadingMore: boolean; renderPullRefreshLoading: () => React.JSX.Element; };