Files
lingji-work-fe/env.d.ts

7 lines
194 B
TypeScript
Raw Normal View History

2025-06-16 14:42:26 +08:00
/// <reference types="vite/client" />
2025-07-25 15:11:57 +08:00
declare module '*.vue' {
import type { DefineComponent } from 'vue';
const vueComponent: DefineComponent<{}, {}, any>;
export default vueComponent;
}