UNPKG

debt-collector

Version:

a nodejs tool to identify, track and mesure technical debt

18 lines (17 loc) 612 B
import type { UserConfig, WalkResults, WalkReportTagList } from '../types.js'; import { SpeedEstimation } from '../../components/walk/getEndDatesEstimations.js'; declare const buildWalkReport: ({ userConfig, tags, results, endDateEstimations, reportName, reportsLinks, }: { userConfig: UserConfig; tags: WalkReportTagList; results: WalkResults; endDateEstimations: { rules: Record<string, SpeedEstimation>; global: SpeedEstimation; }; reportName: string; reportsLinks: { name: string; link: string; }[]; }) => void; export default buildWalkReport;