typescript-migration-report
Version:
An npm library that helps you calculate the percentage of TypeScript and JavaScript files in your codebase, assisting in tracking progress during migration from JavaScript to TypeScript.
16 lines (15 loc) • 329 B
TypeScript
export declare const ANSI: {
reset: string;
bold: string;
cyan: string;
yellow: string;
green: string;
red: string;
default: string;
grey: string;
};
export type Cell = {
color: string;
data: string | number;
};
export declare function printTable(headers: string[], rows: Cell[][]): void;