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

12 lines
317 B
TypeScript
Raw Normal View History

import Select from './Select';
2020-10-07 14:49:01 +00:00
import Option from './Option';
import OptGroup from './OptGroup';
import { BaseProps } from './generate';
// eslint-disable-next-line prettier/prettier
export type { ExportedSelectProps as SelectProps } from './Select';
export { Option, OptGroup, BaseProps };
2020-10-07 14:49:01 +00:00
export default Select;