1234567891011121314151617 |
- import { Chalk } from 'chalk';
- import { SEVERITY } from '../../../snyk-test/common';
- interface IacOutputColors {
- severities: SeverityColor;
- failure: Chalk;
- success: Chalk;
- info: Chalk;
- title: Chalk;
- suggestion: Chalk;
- }
- declare type SeverityColor = {
- [severity in SEVERITY]: Chalk;
- };
- export declare const colors: IacOutputColors;
- export declare const contentPadding: string;
- export declare const maxLineWidth = 80;
- export {};
|