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