Some very simple type helpers used behind `vue-component-meta` for extract component props, slots, emit, exposed types.
npm install vue-component-type-helpersSome very simple type helpers used behind vue-component-meta for extract component props, slots, emit, exposed types.
``vue
`
`ts
import HelloWorld from './HelloWorld.vue'
import type { ComponentProps, ComponentSlots } from 'vue-component-type-helpers'
type Props = ComponentProps
type Slots = ComponentSlots
``