2018-02-10 00:01:32 -08:00
|
|
|
declare const _HOST_: string;
|
2018-03-25 21:21:41 -07:00
|
|
|
declare const _HOSTNAME_: string;
|
2018-02-10 00:01:32 -08:00
|
|
|
declare const _URL_: string;
|
2018-02-10 19:08:43 -08:00
|
|
|
declare const _API_URL_: string;
|
2018-02-10 00:01:32 -08:00
|
|
|
declare const _DOCS_URL_: string;
|
2018-02-10 19:42:02 -08:00
|
|
|
declare const _STATS_URL_: string;
|
|
|
|
declare const _STATUS_URL_: string;
|
|
|
|
declare const _DEV_URL_: string;
|
2018-02-20 05:53:34 -08:00
|
|
|
declare const _CH_URL_: string;
|
2018-02-10 00:01:32 -08:00
|
|
|
declare const _LANG_: string;
|
|
|
|
declare const _RECAPTCHA_SITEKEY_: string;
|
2018-02-10 19:08:43 -08:00
|
|
|
declare const _SW_PUBLICKEY_: string;
|
|
|
|
declare const _THEME_COLOR_: string;
|
|
|
|
declare const _COPYRIGHT_: string;
|
|
|
|
declare const _VERSION_: string;
|
2018-03-01 13:26:31 -08:00
|
|
|
declare const _LICENSE_: string;
|
2018-03-04 20:40:21 -08:00
|
|
|
declare const _GOOGLE_MAPS_API_KEY_: string;
|
2018-02-10 00:01:32 -08:00
|
|
|
|
|
|
|
export const host = _HOST_;
|
2018-03-25 21:21:41 -07:00
|
|
|
export const hostname = _HOSTNAME_;
|
2018-02-10 00:01:32 -08:00
|
|
|
export const url = _URL_;
|
2018-02-10 19:08:43 -08:00
|
|
|
export const apiUrl = _API_URL_;
|
2018-02-10 00:01:32 -08:00
|
|
|
export const docsUrl = _DOCS_URL_;
|
2018-02-10 19:42:02 -08:00
|
|
|
export const statsUrl = _STATS_URL_;
|
|
|
|
export const statusUrl = _STATUS_URL_;
|
|
|
|
export const devUrl = _DEV_URL_;
|
2018-02-20 05:53:34 -08:00
|
|
|
export const chUrl = _CH_URL_;
|
2018-02-10 00:01:32 -08:00
|
|
|
export const lang = _LANG_;
|
|
|
|
export const recaptchaSitekey = _RECAPTCHA_SITEKEY_;
|
2018-02-10 19:08:43 -08:00
|
|
|
export const swPublickey = _SW_PUBLICKEY_;
|
|
|
|
export const themeColor = _THEME_COLOR_;
|
|
|
|
export const copyright = _COPYRIGHT_;
|
|
|
|
export const version = _VERSION_;
|
2018-03-01 13:26:31 -08:00
|
|
|
export const license = _LICENSE_;
|
2018-03-04 20:40:21 -08:00
|
|
|
export const googleMapsApiKey = _GOOGLE_MAPS_API_KEY_;
|