chore: Move env.d.ts to root

This commit is contained in:
Braks
2022-05-22 22:46:47 +02:00
parent 233f5cd078
commit bc0bd3a812
2 changed files with 1 additions and 9 deletions
Vendored
+10
View File
@@ -0,0 +1,10 @@
/// <reference types="vite-svg-loader" />
/// <reference types="vite/client" />
/// <reference types="vue/macros-global" />
declare module '*.vue' {
import type { DefineComponent } from 'vue'
// eslint-disable-next-line @typescript-eslint/ban-types
const component: DefineComponent<{}, {}, any>
export default component
}