/** * Authorization Flow Analyzer * * Analyzes authorization patterns in API endpoints to detect * potential BOLA, IDOR, and other authorization vulnerabilities. * * @module scanners/logic/auth-flow-analyzer */ import type { APIEndpoint, AuthorizationAnalysis } from "./types.js"; /** * Analyze authorization flow for an endpoint */ export declare function analyzeAuthorizationFlow(endpoint: APIEndpoint, projectPath: string): Promise; /** * Batch analyze multiple endpoints */ export declare function analyzeEndpoints(endpoints: APIEndpoint[], projectPath: string): Promise; //# sourceMappingURL=auth-flow-analyzer.d.ts.map