/*! * Copyright (c) Microsoft Corporation and contributors. All rights reserved. * Licensed under the MIT License. */ export type { TelemetryLoggerExt } from "./telemetryTypes.js"; import type { ITelemetryGenericEventExt as ExposedITelemetryGenericEventExt, ITelemetryErrorEventExt as ExposedITelemetryErrorEventExt, ITelemetryPerformanceEventExt as ExposedITelemetryPerformanceEventExt, TelemetryEventCategory as ExposedTelemetryEventCategory } from "./telemetryTypes.js"; /** * Informational (non-error) telemetry event * @remarks Maps to category = "generic" * @internal */ export type ITelemetryGenericEventExt = ExposedITelemetryGenericEventExt; /** * Error telemetry event. * @remarks Maps to category = "error" * @internal */ export type ITelemetryErrorEventExt = ExposedITelemetryErrorEventExt; /** * Performance telemetry event. * @remarks Maps to category = "performance" * @internal */ export type ITelemetryPerformanceEventExt = ExposedITelemetryPerformanceEventExt; /** * The categories FF uses when instrumenting the code. * * generic - Informational log event * * error - Error log event, ideally 0 of these are logged during a session * * performance - Includes duration, and often has _start, _end, or _cancel suffixes for activity tracking * @internal */ export type TelemetryEventCategory = ExposedTelemetryEventCategory; //# sourceMappingURL=telemetryTypesUndeprecated.d.ts.map