/** * Security Scanner - Vulnerability Detection * * Scan workflows for security issues like credential leaks, * unsafe code execution, and potential vulnerabilities. */ import type { Workflow } from './generator.js'; export interface SecurityIssue { severity: 'critical' | 'high' | 'medium' | 'low'; type: string; message: string; node?: string; recommendation: string; } /** * Scan workflow for security issues */ export declare function scanSecurity(workflow: Workflow): SecurityIssue[]; /** * Check if workflow handles sensitive data */ export declare function detectSensitiveData(workflow: Workflow): string[]; //# sourceMappingURL=security.d.ts.map