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

11 lines
326 B
TypeScript
Raw Normal View History

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