diff --git a/types/env.d.ts b/types/env.d.ts new file mode 100644 index 0000000..d27eb5a --- /dev/null +++ b/types/env.d.ts @@ -0,0 +1,8 @@ +/// + +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 +}