Files
video-gen/video-gen-admin/node_modules/@rc-component/table/lib/Footer/Summary.d.ts
T
2026-05-25 17:08:18 +08:00

15 lines
357 B
TypeScript

import type * as React from 'react';
import Cell from './Cell';
import Row from './Row';
export interface SummaryProps {
fixed?: boolean | 'top' | 'bottom';
}
/**
* Syntactic sugar. Do not support HOC.
*/
declare const Summary: React.FC<React.PropsWithChildren<SummaryProps>> & {
Row: typeof Row;
Cell: typeof Cell;
};
export default Summary;