tdesign-react
Version:
TDesign Component for React
13 lines (12 loc) • 429 B
TypeScript
import type { SinglePanelProps } from '../panel/SinglePanel';
export interface TableDataProps extends SinglePanelProps {
isRange?: boolean;
start: Date | undefined;
end?: Date | undefined;
hoverStart?: Date | undefined;
hoverEnd?: Date | undefined;
minDate: Date | null;
maxDate: Date | null;
cancelRangeSelectLimit?: boolean;
}
export default function useTableData(props: TableDataProps): any[];