13 lines
238 B
TypeScript
13 lines
238 B
TypeScript
/// <reference types="vite/client" />
|
|
|
|
interface ImportMetaEnv {
|
|
readonly NVWA_BASE_URL: string;
|
|
readonly NVWA_AUTH_REQUIRED?: string;
|
|
readonly NVWA_AUTH_ENABLED?: string;
|
|
}
|
|
|
|
interface ImportMeta {
|
|
readonly env: ImportMetaEnv;
|
|
}
|
|
|