Skip to content

Commit 55649c0

Browse files
committed
api extractor
1 parent cc24520 commit 55649c0

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

common/reviews/api/heft.api.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ export interface IHeftSessionHooks {
275275
export interface IMetricsData {
276276
command: string;
277277
commandParameters: Record<string, string>;
278-
encounteredErrors: boolean;
278+
encounteredError?: boolean;
279279
machineArch: string;
280280
machineCores: number;
281281
machineOs: string;
@@ -286,6 +286,8 @@ export interface IMetricsData {
286286

287287
// @internal (undocumented)
288288
export interface _IPerformanceData {
289+
// (undocumented)
290+
encounteredError?: boolean;
289291
// (undocumented)
290292
taskTotalExecutionMs: number;
291293
}
@@ -364,7 +366,7 @@ export class _MetricsCollector {
364366
flushAsync(): Promise<void>;
365367
// (undocumented)
366368
readonly hooks: MetricsCollectorHooks;
367-
record(command: string, encounteredErrors: boolean, performanceData?: Partial<_IPerformanceData>, parameters?: Record<string, string>): void;
369+
record(command: string, performanceData?: Partial<_IPerformanceData>, parameters?: Record<string, string>): void;
368370
setStartTime(): void;
369371
}
370372

0 commit comments

Comments
 (0)