Skip to content

Commit

Permalink
feat: QPPA-0000 fix benchmark type
Browse files Browse the repository at this point in the history
  • Loading branch information
ckawell committed Aug 29, 2024
1 parent d7c093b commit a441f2c
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion util/interfaces/benchmarks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,17 @@ export interface BenchmarksDetails {
metricType?: string;
isToppedOutByProgram?: boolean;
percentiles?: {
[key: string]: number;
"1": number;
"10": number;
"20": number;
"30": number;
"40": number;
"50": number;
"60": number;
"70": number;
"80": number;
"90": number;
"99": number;
};
deciles?: number[];
averagePerformanceRate?: number;
Expand Down

0 comments on commit a441f2c

Please sign in to comment.