utils.d.ts 455 B

1234567891011121314151617
  1. import { Chalk } from 'chalk';
  2. import { SEVERITY } from '../../../snyk-test/common';
  3. interface IacOutputColors {
  4. severities: SeverityColor;
  5. failure: Chalk;
  6. success: Chalk;
  7. info: Chalk;
  8. title: Chalk;
  9. suggestion: Chalk;
  10. }
  11. declare type SeverityColor = {
  12. [severity in SEVERITY]: Chalk;
  13. };
  14. export declare const colors: IacOutputColors;
  15. export declare const contentPadding: string;
  16. export declare const maxLineWidth = 80;
  17. export {};