vite-env.d.ts 279 B

12345678910111213
  1. /// <reference types="vite/client" />
  2. declare module '*.vue' {
  3. import type { DefineComponent } from 'vue'
  4. const component: DefineComponent<{}, {}, unknown>
  5. export default component
  6. }
  7. interface ComponentConstructor<P = any> {
  8. new (...args: any[]): {
  9. $props: P
  10. }
  11. }