tdesign-react
Version:
TDesign Component for React
20 lines (19 loc) • 740 B
TypeScript
import React from 'react';
import { TdBaseTableProps } from './type';
import { RowAndColFixedPosition } from './interface';
export interface TFootProps {
rowKey: string;
isFixedHeader: boolean;
rowAndColFixedPosition: RowAndColFixedPosition;
footData: TdBaseTableProps['footData'];
columns: TdBaseTableProps['columns'];
rowAttributes: TdBaseTableProps['rowAttributes'];
rowClassName: TdBaseTableProps['rowClassName'];
thWidthList?: {
[colKey: string]: number;
};
footerSummary?: TdBaseTableProps['footerSummary'];
rowspanAndColspanInFooter: TdBaseTableProps['rowspanAndColspanInFooter'];
virtualScroll?: Boolean;
}
export default function TFoot(props: TFootProps): React.JSX.Element;