mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-04 13:08:48 +08:00
14 lines
556 B
TypeScript
14 lines
556 B
TypeScript
// base rc-select 14.1.1
|
|
import type { SelectProps } from './Select';
|
|
import Select, { selectProps } from './Select';
|
|
import Option from './Option';
|
|
import OptGroup from './OptGroup';
|
|
import BaseSelect from './BaseSelect';
|
|
import type { BaseSelectProps, BaseSelectRef, BaseSelectPropsWithoutPrivate } from './BaseSelect';
|
|
import useBaseProps from './hooks/useBaseProps';
|
|
|
|
export { Option, OptGroup, selectProps, BaseSelect, useBaseProps };
|
|
export type { BaseSelectProps, BaseSelectRef, BaseSelectPropsWithoutPrivate, SelectProps };
|
|
|
|
export default Select;
|