/** * SQL / NoSQL / Command injection scanner. * Implements one-hop taint tracking via Pass 1 (collectTaintedVars) and * Pass 2 (extending sink alternations in select patterns). */ import type { SecurityIssue } from '../types.js'; export declare function scanInjection(code: string, language: string): SecurityIssue[];