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

12 lines
428 B
TypeScript
Raw Normal View History

2021-06-26 01:35:40 +00:00
import type { ExportedSelectProps } from './Select';
2021-08-22 08:59:13 +00:00
import Select, { selectProps } 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';
2021-08-22 02:47:41 +00:00
import type { ExtractPropTypes } from 'vue';
2021-08-22 02:47:41 +00:00
export type SelectProps<T = any> = Partial<ExtractPropTypes<ExportedSelectProps<T>>>;
2021-08-22 08:59:13 +00:00
export { Option, OptGroup, selectBaseProps, selectProps };
2020-10-07 14:49:01 +00:00
export default Select;