Files
gt-agent-company/types/module.d.ts
sexygoat 3c62cc1cd1 first
2026-03-31 18:41:52 +08:00

10 lines
244 B
TypeScript

/// <reference types="vite/client" />
declare module '*.vue' {
import type { DefineComponent } from 'vue';
// eslint-disable-next-line ts/no-empty-object-type
const component: DefineComponent<{}, {}, any>;
export default component;
}