Skip to main content

Type Alias: NormalBenchmarkResult

NormalBenchmarkResult: BaseBenchmarkResult & SolveResult & {error: undefined; }

Data about normal benchmark run (that didn't end by an error), see function benchmark.

It is an extension of BaseBenchmarkResult and SolveResult, i.e. it contains all properties from those two types. it also contains an error field that is always undefined.

Type declaration

error

error: undefined

For regular runs, error is undefined. This property can be used to distinguish regular runs from error runs.

See