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

10 lines
286 B
TypeScript
Raw Normal View History

2020-10-19 09:17:10 +00:00
import Select, { ExportedSelectProps } from './Select';
2020-10-07 14:49:01 +00:00
import Option from './Option';
import OptGroup from './OptGroup';
import { BaseProps } from './generate';
2020-10-19 14:11:45 +00:00
export type SelectProps<T = any> = ExportedSelectProps<T>;
export { Option, OptGroup, BaseProps };
2020-10-07 14:49:01 +00:00
export default Select;