tdesign-vue
Version:
13 lines (12 loc) • 321 B
TypeScript
import { TdTreeSelectProps } from './type';
export declare type TreeSelectProps = TdTreeSelectProps;
export * from './type';
export interface RemoveOptions<DataOption> {
value: string | number;
data: DataOption;
e: MouseEvent;
}
export interface NodeOptions {
label: string;
value: string | number;
}