Files
AstrBot/dashboard/env.d.ts
2026-03-19 16:03:52 +08:00

19 lines
444 B
TypeScript

/// <reference types="vite/client" />
interface ImportMetaEnv {
readonly VITE_API_BASE?: string;
readonly VITE_ASTRBOT_RELEASE_BASE_URL?: string;
readonly VITE_BASE_PATH?: string;
readonly VITE_DEV_API_PROXY_TARGET?: string;
}
interface ImportMeta {
readonly env: ImportMetaEnv;
}
declare module "*.vue" {
import type { DefineComponent } from "vue";
const component: DefineComponent<{}, {}, any>;
export default component;
}