-
Notifications
You must be signed in to change notification settings - Fork 6
/
env.d.ts
25 lines (24 loc) · 1.08 KB
/
env.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/// <reference types="vite/client" />
interface ImportMetaEnv {
readonly VITE_SIDENAV: string; // true | false
readonly VITE_ENABLED_PREZS: string; // CatPrez | SpacePrez | VocPrez comma separated
readonly VITE_ENABLE_SCORES: string; // true | false
readonly VITE_PER_PAGE: number;
readonly VITE_CONCEPT_PER_PAGE: number;
readonly VITE_API_BASE_URL: string;
readonly VITE_BASE_URL: string;
readonly VITE_MAP_SETTINGS_API_KEY: string;
readonly VITE_MAP_SETTINGS_OPTIONS_CENTER_LAT: number;
readonly VITE_MAP_SETTINGS_OPTIONS_CENTER_LNG: number;
readonly VITE_MAP_SETTINGS_OPTIONS_STREETVIEW_CONTROLLER: boolean;
readonly VITE_MAP_SETTINGS_OPTIONS_ZOOM: number;
readonly VITE_MAP_SEARCH_SPATIAL_DATASET_CLASS: string;
readonly VITE_MAP_SEARCH_SPATIAL_MEMBERSHIP_RELATIONSHIP: string;
readonly VITE_MAP_SEARCH_PROPS_F_ID: string;
readonly VITE_MAP_SEARCH_PROPS_F_LABEL: string;
readonly VITE_MAP_SEARCH_PROPS_FC_LABEL: string;
readonly VITE_MAP_SEARCH_PROPS_DS_LABEL: string;
}
interface ImportMeta {
readonly env: ImportMetaEnv;
}