smc/src/vite-env.d.ts
2022-09-28 10:24:25 -04:00

10 lines
188 B
TypeScript

/// <reference types='vite/client' />
declare module '*.vue' {
import type { DefineComponent } from 'vue'
const component: DefineComponent<{}, {}, any>
export default component
}