iceshrimp-legacy/src/web/app/config.ts

12 lines
337 B
TypeScript
Raw Normal View History

2018-02-10 09:01:32 +01:00
declare const _HOST_: string;
declare const _URL_: string;
declare const _DOCS_URL_: string;
declare const _LANG_: string;
declare const _RECAPTCHA_SITEKEY_: string;
export const host = _HOST_;
export const url = _URL_;
export const docsUrl = _DOCS_URL_;
export const lang = _LANG_;
export const recaptchaSitekey = _RECAPTCHA_SITEKEY_;