refactor: ♻️ vue 文件类型声明位置调整

This commit is contained in:
ray
2024-11-12 00:21:53 +08:00
parent 43ac2a823c
commit e597853e5b
2 changed files with 5 additions and 6 deletions

5
src/types/shims-vue.d.ts vendored Normal file
View File

@@ -0,0 +1,5 @@
declare module "*.vue" {
import type { DefineComponent } from "vue";
const component: DefineComponent<{}, {}, any>;
export default component;
}