2
0
mirror of https://github.com/tenrok/vue-tribute.git synced 2026-05-17 07:09:39 +03:00
Files
Collin Henderson 03dc35436b Initial v2 commit
2022-01-24 09:40:45 -05:00

9 lines
276 B
TypeScript

/// <reference types="vite/client" />
declare module '*.vue' {
import { DefineComponent } from 'vue'
// eslint-disable-next-line @typescript-eslint/no-explicit-any, @typescript-eslint/ban-types
const component: DefineComponent<{}, {}, any>
export default component
}