@codechecks/type-coverage-watcher
Version:
Track missing type coverage in TypeScript projects to ensure type safety
11 lines (10 loc) • 434 B
TypeScript
interface FormatShortDescriptionArgs {
coverageDiffPerc: number;
headTypeCoveragePerc: number;
newUntypedSymbols: number;
atLeast?: number;
}
export declare function formatShortDescription({ coverageDiffPerc, atLeast, headTypeCoveragePerc, newUntypedSymbols, }: FormatShortDescriptionArgs): string;
export declare function perc(n: number): string;
export declare function renderSign(value: number): string;
export {};