mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-05 05:29:01 +08:00
11 lines
314 B
TypeScript
11 lines
314 B
TypeScript
import type { ExportedSelectProps } from './Select';
|
|
import Select from './Select';
|
|
import Option from './Option';
|
|
import OptGroup from './OptGroup';
|
|
import { BaseProps } from './generate';
|
|
|
|
export type SelectProps<T = any> = ExportedSelectProps<T>;
|
|
export { Option, OptGroup, BaseProps };
|
|
|
|
export default Select;
|