13 lines
285 B
TypeScript
13 lines
285 B
TypeScript
/// <reference types="vite/client" />
|
|
|
|
interface ImportMetaEnv {
|
|
readonly VITE_APP_WEBSOCKET_PROTOCOL: string;
|
|
readonly VITE_APP_HTTP_PROTOCOL: string;
|
|
readonly VITE_APP_API_URL: string;
|
|
readonly VITE_APP_URL: string;
|
|
}
|
|
|
|
interface ImportMeta {
|
|
readonly env: ImportMetaEnv;
|
|
}
|