forked from RDFLib/prez-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathenv.d.ts
21 lines (20 loc) · 933 Bytes
/
env.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/// <reference types="vite/client" />
interface ImportMetaEnv {
readonly VITE_SIDENAV: string; // true | false
readonly VITE_ENABLED_PREZS: string; // CatPrez | SpacePrez | VocPrez comma separated
readonly VITE_API_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;
}