main
ts 15 lines 359 Bytes
Raw
1 /// <reference types="vite/client" />
2
3 declare module "*.vue" {
4 import type { DefineComponent } from "vue"
5
6 const component: DefineComponent<Record<string, unknown>, Record<string, unknown>, any>
7 export default component
8 }
9
10 declare module "*.svg" {
11 import type { DefineComponent } from "vue"
12
13 const component: DefineComponent
14 export default component
15 }