assertthat
Version:
assertthat provides fluent TDD.
7 lines (6 loc) • 379 B
TypeScript
import { BenchmarkResult } from '../types/BenchmarkResult';
import { BenchmarkResultWithRegressionDeviation } from '../types/BenchmarkResultWithRegressionDeviation';
declare const calculateLinearRegressionDeviations: ({ benchmarkResults }: {
benchmarkResults: BenchmarkResult[];
}) => BenchmarkResultWithRegressionDeviation[];
export { calculateLinearRegressionDeviations };