UNPKG

assertthat

Version:
13 lines (12 loc) 378 B
import { BenchmarkFunction } from './BenchmarkFunction'; import { BenchmarkSetup } from './BenchmarkSetup'; import { BenchmarkTeardown } from './BenchmarkTeardown'; interface BenchmarkCase { name: string; unit: string; benchmark: BenchmarkFunction; scales: number[]; setup?: BenchmarkSetup; teardown?: BenchmarkTeardown; } export type { BenchmarkCase };