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