@specs-feup/lara
Version:
A js port of the popular framework for building source-to-source compilers
17 lines • 359 B
TypeScript
/**
* Data about a metric.
*/
export default class MetricResult {
value: number;
unit: string;
constructor(value: number, unit: string);
/**
* @returns The value of the metric
*/
getValue(): number;
/**
* @returns The unit of the metric value
*/
getUnit(): string;
}
//# sourceMappingURL=MetricResult.d.ts.map