Files
dafuweng-buildadmin/web/types/module.d.ts
2026-03-06 00:29:28 +08:00

9 lines
259 B
TypeScript

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