@code-pushup/cli
Version:
A CLI to run all kinds of code quality measurements to align your team with company goals
12 lines (11 loc) • 450 B
TypeScript
export declare function titleStyle(title: string): string;
export declare function headerStyle(title: string): string;
export declare function descriptionStyle(title: string): string;
export declare function formatObjectValue<T>(opts: T, propName: keyof T): T & {
[x: string]: string;
};
export declare function formatNestedValues<T>(options: Record<string, T>, propName: keyof T): {
[k: string]: T & {
[x: string]: string;
};
};