perf: move src/types to root

This commit is contained in:
Vben
2021-02-26 20:09:24 +08:00
parent a84586e2f4
commit fcee7d4eb7
36 changed files with 195 additions and 162 deletions

5
types/vue-app-env.d.ts vendored Normal file
View File

@@ -0,0 +1,5 @@
declare module '*.vue' {
import { defineComponent } from 'vue';
const Component: ReturnType<typeof defineComponent>;
export default Component;
}