egirlskey/src/client/app/config.ts

52 lines
1.8 KiB
TypeScript
Raw Normal View History

2018-02-10 08:01:32 +00:00
declare const _HOST_: string;
2018-03-26 04:21:41 +00:00
declare const _HOSTNAME_: string;
2018-02-10 08:01:32 +00:00
declare const _URL_: string;
2018-06-14 22:56:56 +00:00
declare const _NAME_: string;
declare const _DESCRIPTION_: string;
2018-02-11 03:08:43 +00:00
declare const _API_URL_: string;
declare const _WS_URL_: string;
2018-02-10 08:01:32 +00:00
declare const _DOCS_URL_: string;
2018-02-11 03:42:02 +00:00
declare const _STATS_URL_: string;
declare const _STATUS_URL_: string;
declare const _DEV_URL_: string;
declare const _REPOSITORY_URL_: string;
declare const _FEEDBACK_URL_: string;
2018-02-10 08:01:32 +00:00
declare const _LANG_: string;
2018-05-20 17:13:39 +00:00
declare const _LANGS_: string;
2018-02-10 08:01:32 +00:00
declare const _RECAPTCHA_SITEKEY_: string;
2018-02-11 03:08:43 +00:00
declare const _SW_PUBLICKEY_: string;
declare const _THEME_COLOR_: string;
declare const _COPYRIGHT_: string;
declare const _VERSION_: string;
2018-03-29 05:48:47 +00:00
declare const _CODENAME_: string;
2018-03-01 21:26:31 +00:00
declare const _LICENSE_: string;
declare const _GOOGLE_MAPS_API_KEY_: string;
2018-06-15 10:56:18 +00:00
declare const _WELCOME_BG_URL_: string;
declare const _TWITTER_INTEGRATION_: boolean;
2018-02-10 08:01:32 +00:00
export const host = _HOST_;
2018-03-26 04:21:41 +00:00
export const hostname = _HOSTNAME_;
2018-02-10 08:01:32 +00:00
export const url = _URL_;
2018-06-14 22:56:56 +00:00
export const name = _NAME_;
export const description = _DESCRIPTION_;
2018-02-11 03:08:43 +00:00
export const apiUrl = _API_URL_;
export const wsUrl = _WS_URL_;
2018-02-10 08:01:32 +00:00
export const docsUrl = _DOCS_URL_;
2018-02-11 03:42:02 +00:00
export const statsUrl = _STATS_URL_;
export const statusUrl = _STATUS_URL_;
export const devUrl = _DEV_URL_;
export const repositoryUrl = _REPOSITORY_URL_;
export const feedbackUrl = _FEEDBACK_URL_;
2018-02-10 08:01:32 +00:00
export const lang = _LANG_;
2018-05-20 17:13:39 +00:00
export const langs = _LANGS_;
2018-02-10 08:01:32 +00:00
export const recaptchaSitekey = _RECAPTCHA_SITEKEY_;
2018-02-11 03:08:43 +00:00
export const swPublickey = _SW_PUBLICKEY_;
export const themeColor = _THEME_COLOR_;
export const copyright = _COPYRIGHT_;
export const version = _VERSION_;
2018-03-29 05:48:47 +00:00
export const codename = _CODENAME_;
2018-03-01 21:26:31 +00:00
export const license = _LICENSE_;
export const googleMapsApiKey = _GOOGLE_MAPS_API_KEY_;
2018-06-15 10:56:18 +00:00
export const welcomeBgUrl = _WELCOME_BG_URL_;
export const twitterIntegration = _TWITTER_INTEGRATION_;