Skip to content

Commit

Permalink
gen docs
Browse files Browse the repository at this point in the history
  • Loading branch information
anthony-murphy committed Jul 20, 2023
1 parent 19aebef commit 88de372
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion api-report/telemetry-utils.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,9 @@ export function extractLogSafeErrorProperties(error: any, sanitizeStack: boolean
stack?: string | undefined;
};

// @public (undocumented)
export function formatTick(tick: number): number;

// @public
export function generateErrorWithStack(): Error;

Expand Down Expand Up @@ -291,6 +294,9 @@ export const NORMALIZED_ERROR_TYPE = "genericError";
// @public
export function normalizeError(error: unknown, annotations?: IFluidErrorAnnotations): IFluidErrorBase;

// @public
export function numberFromString(str: string | null | undefined): string | number | undefined;

// @public
export class PerformanceEvent {
protected constructor(logger: ITelemetryLoggerExt, event: ITelemetryGenericEvent, markers?: IPerformanceEventMarkers, recordHeapSize?: boolean);
Expand Down Expand Up @@ -358,10 +364,11 @@ export abstract class TelemetryLogger implements ITelemetryLoggerExt {
constructor(namespace?: string | undefined, properties?: ITelemetryLoggerPropertyBags | undefined);
// (undocumented)
static readonly eventNamespaceSeparator = ":";
// (undocumented)
// @deprecated (undocumented)
static formatTick(tick: number): number;
// (undocumented)
protected readonly namespace?: string | undefined;
// @deprecated
static numberFromString(str: string | null | undefined): string | number | undefined;
static prepareErrorObject(event: ITelemetryBaseEvent, error: any, fetchStack: boolean): void;
// (undocumented)
Expand Down

0 comments on commit 88de372

Please sign in to comment.