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.
6 lines
475 B
6 lines
475 B
import React from 'react';
|
|
import { DataNode, LegacyDataNode, ChangeEventExtra, InnerDataNode, RawValueType } from '../interface';
|
|
export declare function convertChildrenToData(nodes: React.ReactNode): DataNode[];
|
|
export declare function fillLegacyProps(dataNode: DataNode): LegacyDataNode;
|
|
export declare function fillAdditionalInfo(extra: ChangeEventExtra, triggerValue: RawValueType, checkedValues: RawValueType[], treeData: InnerDataNode[], showPosition: boolean): void;
|