feat: env.d.ts

This commit is contained in:
2023-07-18 11:09:27 +08:00
parent 4137c35a3e
commit ac9f1ad329
2 changed files with 9 additions and 1 deletions

8
types/env.d.ts vendored Normal file
View File

@ -0,0 +1,8 @@
/// <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
}