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