mirror of
https://github.com/element-plus/element-plus.git
synced 2024-11-27 02:01:15 +08:00
79938178dd
* build: use vue-tsc to generate dts * reduce inline type declaration * fix: type checking failed * apply suggestions from code review * address PR comments
17 lines
527 B
TypeScript
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
|