/** * Trivy Wrapper * Trivy 도구를 실행하고 결과를 파싱합니다. * 주로 IaC 파일(Dockerfile, Kubernetes, Terraform) 스캔에 사용 * * @author zerry */ import type { SecurityIssue } from '../types.js'; /** * Trivy를 사용하여 IaC 파일 스캔 */ export declare function scanWithTrivy(code: string, filename: string, scanType?: 'config' | 'vuln'): Promise;