Files
zuoye4/env.d.ts

6 lines
203 B
TypeScript
Raw Permalink Normal View History

2025-04-06 21:12:44 +08:00
/// <reference types="vite/client" />
declare module "*.vue" {
import type { DefineComponent } from "vue";
const vueComponent: DefineComponent<{}, {}, any>;
export default vueComponent;
}