Latest updates from IceHrmPro
This commit is contained in:
23
web/node_modules/rc-tree-select/es/Context.d.ts
generated
vendored
Normal file
23
web/node_modules/rc-tree-select/es/Context.d.ts
generated
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
import React from 'react';
|
||||
import { IconType } from 'rc-tree/lib/interface';
|
||||
import { Key, LegacyDataNode } from './interface';
|
||||
interface ContextProps {
|
||||
checkable: boolean | React.ReactNode;
|
||||
checkedKeys: Key[];
|
||||
halfCheckedKeys: Key[];
|
||||
treeExpandedKeys: Key[];
|
||||
treeDefaultExpandedKeys: Key[];
|
||||
onTreeExpand: (keys: Key[]) => void;
|
||||
treeDefaultExpandAll: boolean;
|
||||
treeIcon: IconType;
|
||||
showTreeIcon: boolean;
|
||||
switcherIcon: IconType;
|
||||
treeLine: boolean;
|
||||
treeNodeFilterProp: string;
|
||||
treeLoadedKeys: Key[];
|
||||
treeMotion: any;
|
||||
loadData: (treeNode: LegacyDataNode) => Promise<unknown>;
|
||||
onTreeLoad: (loadedKeys: Key[]) => void;
|
||||
}
|
||||
export declare const SelectContext: React.Context<ContextProps>;
|
||||
export {};
|
||||
Reference in New Issue
Block a user