UNPKG

dnssweeper-cli

Version:

CLI tool for detecting and analyzing unused DNS records

19 lines 594 B
/** * analyzeコマンドの実装 * CSVファイルを分析して未使用DNSレコードを検出 */ interface AnalyzeOptions { output: 'table' | 'json' | 'csv'; english?: boolean; verbose?: boolean; riskLevel?: 'critical' | 'high' | 'medium' | 'low'; outputFile?: string; } /** * analyzeコマンドのメイン実装 * @param file - 分析するCSVファイルのパス * @param options - コマンドオプション */ export declare function analyzeCommand(file: string, options: AnalyzeOptions): Promise<void>; export {}; //# sourceMappingURL=analyze.d.ts.map