2024-11-12 15:44:05 +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;
|
|
|
|
}
|
|
|
|
interface ImportMetaEnv {
|
|
|
|
readonly VITE_API_BASE_URL: string;
|
|
|
|
}
|
2025-02-28 20:47:07 +08:00
|
|
|
|
|
|
|
|