debt-collector
Version:
a nodejs tool to identify, track and mesure technical debt
10 lines (9 loc) • 374 B
TypeScript
import type { Config, FileResults, WalkLoopResult } from '../../lib/types.js';
export declare const getCommitResult: ({ previousResult, sanitizedConfig, include, previousHash, }: {
previousResult: WalkLoopResult | null;
sanitizedConfig: Config;
include: string[] | null;
previousHash?: string | null;
}) => Promise<{
[filePath: string]: FileResults;
}>;