type BenchmarkConstructor = (
  name: string,
  optionsOrFn:
    | (Partial<BenchmarkOptions> & { fn: BenchmarkFunction })
    | BenchmarkFunction,