UNPKG

@dapplion/benchmark

Version:

Ensures that new code does not introduce performance regressions with CI. Tracks:

15 lines 593 B
import { Options } from "yargs"; import { Opts, BenchmarkOpts } from "./types.js"; import { FileCollectionOptions } from "./utils/mochaCliExports.js"; export declare const optionsDefault: { threshold: number; historyLocalPath: string; historyCacheKey: string; }; type ICliCommandOptions<OwnArgs> = Required<{ [key in keyof OwnArgs]: Options; }>; type CliOpts = Omit<Opts, "fileGlob" | keyof FileCollectionOptions> & Omit<BenchmarkOpts, "only" | "skip" | "noThreshold">; export declare const options: ICliCommandOptions<CliOpts>; export {}; //# sourceMappingURL=options.d.ts.map