Files
admin-govern/types/vite-env.d.ts

7 lines
282 B
TypeScript
Raw Permalink Normal View History

2023-12-21 16:42:39 +08:00
/// <reference types="vite/client" />
declare module '*.vue' {
import { DefineComponent } from 'vue'
// eslint-disable-next-line @typescript-eslint/no-explicit-any, @typescript-eslint/ban-types
const component: DefineComponent<{}, {}, any>
export default component
}