@daysnap/horn-ui
Version:
hron ui
16 lines (11 loc) • 390 B
text/typescript
import Component from './hor-time-picker.vue'
import { withInstall } from '../utils'
export * from './types'
export const HorTimePicker = withInstall<typeof Component>(Component)
export default HorTimePicker
export type HorTimePickerInstance = InstanceType<typeof HorTimePicker>
declare module 'vue' {
export interface GlobalComponents {
HorTimePicker: typeof HorTimePicker
}
}