errors.d.ts 386 B

123456789101112
  1. import { CustomError } from '../../../errors';
  2. import { ScanError } from './scan/results';
  3. export declare function getErrorUserMessage(code: number): string;
  4. export declare class SnykIacTestError extends CustomError {
  5. fields: {
  6. path: string;
  7. [key: string]: string;
  8. };
  9. constructor(scanError: ScanError);
  10. get path(): string;
  11. set path(path1: string);
  12. }