Files
VibeCoding/WebRTCSignalServerWeb/src/env.d.ts

17 lines
392 B
TypeScript

/// <reference types="vite/client" />
declare module '*.vue' {
import type { DefineComponent } from 'vue';
const component: DefineComponent<Record<string, unknown>, Record<string, unknown>, unknown>;
export default component;
}
interface ImportMetaEnv {
readonly VITE_API_BASE: string;
readonly VITE_ADMIN_TOKEN: string;
}
interface ImportMeta {
readonly env: ImportMetaEnv;
}