2023-05-26 13:17:03 +03:00
|
|
|
/** @file Globals defined only in this module. */
|
|
|
|
|
2023-06-19 02:02:08 +03:00
|
|
|
// =====================================
|
|
|
|
// === Global namespace augmentation ===
|
|
|
|
// =====================================
|
|
|
|
|
2023-05-26 13:17:03 +03:00
|
|
|
declare global {
|
|
|
|
// These are top-level constants, and therefore should be `CONSTANT_CASE`.
|
|
|
|
/* eslint-disable @typescript-eslint/naming-convention */
|
|
|
|
/** Whether the */
|
|
|
|
/** Whether the application may have the local backend running. */
|
|
|
|
const SUPPORTS_LOCAL_BACKEND: boolean
|
|
|
|
/** Whether the application supports deep links. This is only true when using
|
|
|
|
* the installed app on macOS and Windows. */
|
|
|
|
const SUPPORTS_DEEP_LINKS: boolean
|
|
|
|
/* eslint-enable @typescript-eslint/naming-convention */
|
|
|
|
}
|
|
|
|
|
|
|
|
export {}
|