Latest updates from IceHrmPro
This commit is contained in:
11
web/node_modules/antd/lib/table/ExpandIcon.d.ts
generated
vendored
Normal file
11
web/node_modules/antd/lib/table/ExpandIcon.d.ts
generated
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
import * as React from 'react';
|
||||
import { TableLocale } from './interface';
|
||||
interface DefaultExpandIconProps<RecordType> {
|
||||
prefixCls: string;
|
||||
onExpand: (record: RecordType, e: React.MouseEvent<HTMLElement>) => void;
|
||||
record: RecordType;
|
||||
expanded: boolean;
|
||||
expandable: boolean;
|
||||
}
|
||||
declare function renderExpandIcon(locale: TableLocale): <RecordType>({ prefixCls, onExpand, record, expanded, expandable, }: DefaultExpandIconProps<RecordType>) => JSX.Element;
|
||||
export default renderExpandIcon;
|
||||
Reference in New Issue
Block a user