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

11 lines
314 B
TypeScript
Raw Normal View History

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