This commit is contained in:
2023-07-11 10:38:21 +03:00
commit 2ddefb9be3
25 changed files with 747 additions and 0 deletions

5
src/types/vueshim.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
}