@gzued/antd-compiled
Version:
Pre-bundled Ant Design 4.x and related dependencies for @gzued packages
15 lines (14 loc) • 534 B
TypeScript
import * as React from 'react';
import type { CustomizeComponent } from '../interface';
export interface ExpandedRowProps {
prefixCls: string;
component: CustomizeComponent;
cellComponent: CustomizeComponent;
className: string;
expanded: boolean;
children: React.ReactNode;
colSpan: number;
isEmpty: boolean;
}
declare function ExpandedRow({ prefixCls, children, component: Component, cellComponent, className, expanded, colSpan, isEmpty, }: ExpandedRowProps): JSX.Element;
export default ExpandedRow;