libyear
Version:
A simple measure of software dependency freshness
4 lines (3 loc) • 304 B
TypeScript
import type { Dependencies, Overrides, Threshold, Totals, Violations } from "./types.js";
export declare const getTotals: (dependencies: Dependencies) => Totals;
export declare const getViolations: (dependencies: Dependencies, totals: Totals, threshold?: Threshold, overrides?: Overrides) => Violations;