dockge/frontend/src/vite-env.d.ts

9 lines
216 B
TypeScript
Raw Normal View History

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