element-pro-components
Version:
a component library for Vue 3 base on element-plus
8 lines (7 loc) • 448 B
TypeScript
import TreeSelect from './TreeSelect';
import { treeSelectProps, treeSelectEmits } from './props';
import type { IDefineProps, IDefineEmits, IDefinePlugin } from '../types/index';
export { treeSelectProps, treeSelectEmits } from './props';
export declare const ProTreeSelect: IDefinePlugin<typeof TreeSelect>;
export type ITreeSelectProps = IDefineProps<typeof treeSelectProps>;
export type ITreeSelectEmits = IDefineEmits<typeof treeSelectEmits>;