perf-insight
Version:
Performance benchmarking tool for NodeJS.
14 lines • 454 B
text/typescript
/**
* This cli is designed to run the benchmarking suites found in the files on the command line.
*/
interface RunResult {
error?: Error;
/**
* Indicates if there were any failures in the benchmark suites.
* This is not an error, since nothing went wrong in the insight code.
*/
hadFailures: boolean;
}
export declare function run(args: string[]): Promise<RunResult>;
export {};
//# sourceMappingURL=runBenchmarkCli.d.mts.map