Files
icehrm/web/node_modules/rc-table/lib/utils/expandUtil.d.ts
2020-05-20 18:47:29 +02:00

5 lines
406 B
TypeScript

/// <reference types="react" />
import { RenderExpandIconProps, Key, GetRowKey } from '../interface';
export declare function renderExpandIcon<RecordType>({ prefixCls, record, onExpand, expanded, expandable, }: RenderExpandIconProps<RecordType>): JSX.Element;
export declare function findAllChildrenKeys<RecordType>(data: RecordType[], getRowKey: GetRowKey<RecordType>, childrenColumnName: string): Key[];