You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
InternshipProject/node_modules/rc-tree-select/lib/utils/legacyUtil.d.ts

7 lines
539 B

import * as React from 'react';
import type { DataNode, ChangeEventExtra, RawValueType } from '../interface';
import type { DefaultOptionType, FieldNames } from '../TreeSelect';
export declare function convertChildrenToData(nodes: React.ReactNode): DataNode[];
export declare function fillLegacyProps(dataNode: DataNode): any;
export declare function fillAdditionalInfo(extra: ChangeEventExtra, triggerValue: RawValueType, checkedValues: RawValueType[], treeData: DefaultOptionType[], showPosition: boolean, fieldNames: FieldNames): void;