/** * Error Handling Command - drift error-handling * * Analyze error handling patterns, detect gaps, and find unhandled error paths. */ import { Command } from 'commander'; import { type ErrorSeverity } from 'driftdetect-core'; export interface ErrorHandlingOptions { format?: 'text' | 'json'; verbose?: boolean; limit?: number; minSeverity?: ErrorSeverity; } export declare function createErrorHandlingCommand(): Command; //# sourceMappingURL=error-handling.d.ts.map