ant-design-vue/components/vc-select2/index.ts

8 lines
228 B
TypeScript

import Select, { ExportedSelectProps } from './Select';
import Option from './Option';
import OptGroup from './OptGroup';
type SelectProps = ExportedSelectProps;
export { Option, OptGroup, SelectProps };
export default Select;