visua-vue/env.d.ts

10 lines
232 B
TypeScript
Raw Permalink Normal View History

2025-07-31 01:52:44 +02:00
2025-07-17 11:33:48 +02:00
/// <reference types="vite/client" />
2025-07-31 01:52:44 +02:00
declare module '*.vue' {
import { DefineComponent } from 'vue';
const component: DefineComponent<Record<string, unknown>, Record<string, unknown>, unknown>;
export default component;
}