8 lines
186 B
TypeScript
Raw Normal View History

2025-06-02 21:36:36 +08:00
/// <reference types="vite/client" />
2025-06-02 21:36:36 +08:00
declare module '*.vue' {
import type { DefineComponent } from 'vue'
const component: DefineComponent<{}, {}, any>
export default component
}