Files
chan/env.d.ts
2026-08-11 16:17:49 +08:00

8 lines
228 B
TypeScript

/// <reference types="vite/client" />
declare module '*.vue' {
import type { DefineComponent } from 'vue'
const component: DefineComponent<Record<string, never>, Record<string, never>, unknown>
export default component
}