Files
Auto_Bangumi/src/vite-env.d.ts
2023-04-24 21:03:19 +08:00

8 lines
189 B
TypeScript

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