web/src/env.d.ts

9 lines
276 B
TypeScript
Raw Permalink Normal View History

2021-12-28 17:23:04 +01: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
}