mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-10 18:03:08 +02:00
12 lines
337 B
TypeScript
12 lines
337 B
TypeScript
|
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_;
|