vue-shovel/env.d.ts

9 lines
279 B
TypeScript
Raw Permalink Normal View History

2023-02-10 12:58:09 +01:00
/// <reference types="vite/client" />
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;
}