element-plus/packages/components/time-picker/index.ts
dopamine 79938178dd
build: use vue-tsc to generate dts (#16111)
* build: use vue-tsc to generate dts

* reduce inline type declaration

* fix: type checking failed

* apply suggestions from code review

* address PR comments
2024-08-07 12:01:46 +08:00

17 lines
527 B
TypeScript

import { withInstall } from '@element-plus/utils'
import TimePicker from './src/time-picker'
import CommonPicker from './src/common/picker.vue'
import TimePickPanel from './src/time-picker-com/panel-time-pick.vue'
import type { SFCWithInstall } from '@element-plus/utils'
export * from './src/utils'
export * from './src/constants'
export * from './src/common/props'
export const ElTimePicker: SFCWithInstall<typeof TimePicker> =
withInstall(TimePicker)
export { CommonPicker, TimePickPanel }
export default ElTimePicker