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