vant/src/picker/index.ts
2021-05-03 09:47:56 +08:00

16 lines
323 B
TypeScript

import { withInstall } from '../utils';
import _Picker from './Picker';
const Picker = withInstall<typeof _Picker>(_Picker);
export default Picker;
export { Picker };
export type {
PickerColumn,
PickerOption,
PickerFieldNames,
PickerObjectColumn,
PickerObjectOption,
PickerToolbarPosition,
} from './Picker';