chore: type config for vue

This commit is contained in:
jezzahehn 2025-05-11 22:04:49 -04:00
parent 33c6b0cd48
commit 3aea00e798
3 changed files with 22 additions and 0 deletions

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