eslint-rule-benchmark
Version:
Benchmark ESLint rules with detailed performance metrics for CI and plugin development
14 lines (13 loc) • 537 B
TypeScript
import { UserBenchmarkConfig } from '../types/user-benchmark-config'
import { TestSpecResult } from '../types/benchmark-config'
/**
* Creates a console-friendly string representation of benchmark results.
*
* @param results - An array of results for all test specifications.
* @param _userConfig - The user's benchmark configuration (currently unused).
* @returns Formatted string for console output.
*/
export declare function useConsoleReport(
results: TestSpecResult[],
_userConfig?: UserBenchmarkConfig,
): Promise<string>