9 lines
400 B
TypeScript
9 lines
400 B
TypeScript
|
// 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`;
|