This repository has been archived on 2026-02-22. You can view files and clone it, but cannot push or open issues/pull-requests.
web/src/env.d.ts

9 lines
276 B
TypeScript

/// <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
}