You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
691 B
18 lines
691 B
import * as React from 'react';
|
|
import { CustomizeComponent } from '../interface';
|
|
export interface ExpandedRowProps<RecordType> {
|
|
prefixCls: string;
|
|
component: CustomizeComponent;
|
|
cellComponent: CustomizeComponent;
|
|
fixHeader: boolean;
|
|
fixColumn: boolean;
|
|
horizonScroll: boolean;
|
|
componentWidth: number;
|
|
className: string;
|
|
expanded: boolean;
|
|
children: React.ReactNode;
|
|
colSpan: number;
|
|
}
|
|
declare function ExpandedRow<RecordType>({ prefixCls, children, component: Component, cellComponent, fixHeader, fixColumn, horizonScroll, className, expanded, componentWidth, colSpan, }: ExpandedRowProps<RecordType>): JSX.Element;
|
|
export default ExpandedRow;
|