Files
2024-09-30 14:08:38 +08:00

15 lines
336 B
TypeScript

/// <reference types="vite/client" />
declare module '*.vue' {
import { DefineComponent } from 'vue'
const component: DefineComponent<{}, {}, any>
export default component
}
declare module '@vue/runtime-core' {
export interface GlobalComponents {
SvgIcon: typeof import('@/components/SvgIcon.vue').default
}
}
export {}