Skip to content

Commit

Permalink
Merge pull request #829 from CMSgov/fix-benchmarks-type
Browse files Browse the repository at this point in the history
QPPA-9423: fix benchmark type
  • Loading branch information
ckawell-sb authored Aug 29, 2024
2 parents d7c093b + a441f2c commit 78b82cb
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 78b82cb

Please sign in to comment.