Files
icehrm/web/node_modules/antd/lib/tree/utils/dictUtil.d.ts
2020-05-20 18:47:29 +02:00

5 lines
341 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
import { DataNode, Key } from 'rc-tree/lib/interface';
/** 计算选中范围只考虑expanded情况以优化性能 */
export declare function calcRangeKeys(treeData: DataNode[], expandedKeys: Key[], startKey?: Key, endKey?: Key): Key[];
export declare function convertDirectoryKeysToNodes(treeData: DataNode[], keys: Key[]): DataNode[];