blob: 932e602e2d3746685a4bbd878b467dbe38efc45e (
plain) (
blame)
1
2
3
4
5
6
7
8
|
// Global Config Keys
/** Specifies whether or not telemetry is enabled or disabled. */
export const TELEMETRY_ENABLED = 'telemetry.enabled';
/** Specifies when the user was informed of anonymous telemetry. */
export const TELEMETRY_NOTIFY_DATE = 'telemetry.notifiedAt';
/** Specifies an anonymous identifier used to dedupe events for a user. */
export const TELEMETRY_ID = `telemetry.anonymousId`;
|