ant-design-vue/components/vc-select/index.ts
2021-06-26 09:35:40 +08:00

11 lines
314 B
TypeScript

import type { ExportedSelectProps } from './Select';
import Select from './Select';
import Option from './Option';
import OptGroup from './OptGroup';
import { BaseProps } from './generate';
export type SelectProps<T = any> = ExportedSelectProps<T>;
export { Option, OptGroup, BaseProps };
export default Select;