scandog
Version:
14 lines • 685 B
TypeScript
import { type PathResult } from './index.js';
export declare const color: {
green: (text: string) => string;
red: (text: string) => string;
};
export declare const bg: {
green: (text: string) => `\u001B[42m${string}\u001B[49m`;
red: (text: string) => `\u001B[41m${string}\u001B[49m`;
};
export declare const reportArgs: (suffix: string, patterns: string[], gitignore: boolean) => string[];
export declare const reportErrors: (results: PathResult[]) => string[];
export declare const filesCount: (count: number) => "1 file" | `${number} files`;
export declare const reportSummary: (results: PathResult[], suffix: string) => string[];
//# sourceMappingURL=report.d.ts.map