snyk
Version:
snyk library and cli utility
13 lines (12 loc) • 401 B
TypeScript
import { CustomError } from '../../../errors';
import { ScanError } from './scan/results';
export declare function getErrorUserMessage(code: number, error: string): string;
export declare class SnykIacTestError extends CustomError {
fields: {
path: string;
[key: string]: string;
};
constructor(scanError: ScanError);
get path(): string;
set path(path1: string);
}