Latest updates from IceHrmPro
This commit is contained in:
17
web/node_modules/rc-tree/lib/utils/conductUtil.d.ts
generated
vendored
Normal file
17
web/node_modules/rc-tree/lib/utils/conductUtil.d.ts
generated
vendored
Normal file
@@ -0,0 +1,17 @@
|
||||
import { Key, DataEntity, DataNode } from '../interface';
|
||||
interface ConductReturnType {
|
||||
checkedKeys: Key[];
|
||||
halfCheckedKeys: Key[];
|
||||
}
|
||||
export declare function isCheckDisabled(node: DataNode): boolean;
|
||||
/**
|
||||
* Conduct with keys.
|
||||
* @param keyList current key list
|
||||
* @param keyEntities key - dataEntity map
|
||||
* @param mode `fill` to fill missing key, `clean` to remove useless key
|
||||
*/
|
||||
export declare function conductCheck(keyList: Key[], checked: true | {
|
||||
checked: false;
|
||||
halfCheckedKeys: Key[];
|
||||
}, keyEntities: Record<Key, DataEntity>): ConductReturnType;
|
||||
export {};
|
||||
Reference in New Issue
Block a user