UNPKG

snyk

Version:

snyk library and cli utility

21 lines (20 loc) 474 B
import { IacProjectTypes } from '../iac/constants'; interface Scan { type: string; targetFile: string; data: any; } export interface IacFile { fileContent: string; fileType: 'yaml' | 'yml' | 'json' | 'tf'; } export interface IacScan extends Scan { type: IacProjectTypes; targetFile: string; data: IacFile; targetFileRelativePath: string; originalProjectName: string; policy: string; projectNameOverride?: string; } export {};