@angular/benchpress
Version:
Benchpress - a framework for e2e performance tests
25 lines (24 loc) • 567 B
TypeScript
/**
* @license
* Copyright Google LLC All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.io/license
*/
export declare class MeasureValues {
runIndex: number;
timeStamp: Date;
values: {
[key: string]: any;
};
constructor(runIndex: number, timeStamp: Date, values: {
[key: string]: any;
});
toJson(): {
timeStamp: string;
runIndex: number;
values: {
[key: string]: any;
};
};
}