UNPKG

snyk

Version:

snyk library and cli utility

8 lines (7 loc) 537 B
import { IacFileParsed, IacFileParseFailure, IaCTestFlags, SafeAnalyticsOutput, TestReturnValue } from './types'; import { CustomError } from '../../../../../lib/errors'; export declare function test(pathToScan: string, options: IaCTestFlags): Promise<TestReturnValue>; export declare function removeFileContent({ filePath, fileType, failureReason, projectType, }: IacFileParsed | IacFileParseFailure): SafeAnalyticsOutput; export declare class InvalidVarFilePath extends CustomError { constructor(path: string, message?: string); }