echoes/frontend/app/env.d.ts

19 lines
307 B
TypeScript
Raw Normal View History

// File path: app/end.d.ts
/**
*
*/
/// <reference types="vite/client" />
interface ImportMetaEnv {
readonly VITE_INIT_STATUS: string;
readonly VITE_SERVER_API: string;
readonly VITE_PORT: string;
readonly VITE_ADDRESS: string;
}
interface ImportMeta {
readonly env: ImportMetaEnv;
}