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