IELET3109-desktop-application/src/vite-env.d.ts

8 lines
189 B
TypeScript
Raw Normal View History

2024-09-19 11:00:37 +00:00
/// <reference types="vite/client" />
declare module "*.vue" {
import type { DefineComponent } from "vue";
const component: DefineComponent<{}, {}, any>;
export default component;
}