UNPKG

symref

Version:

Static code checker for AI code agents (Windsurf, Cline, etc.)

24 lines (23 loc) 757 B
import { ReferenceResult, SymbolInfo } from '../../types'; /** * CLI出力のフォーマッタークラス */ export declare class OutputFormatter { /** * 参照分析結果を表示する * @param result 参照分析結果 */ static displayReferenceResult(result: ReferenceResult): void; /** * 未使用シンボル情報を表示する * @param filePath ファイルパス * @param symbols シンボル情報の配列 */ static displayUnreferencedSymbols(filePath: string, symbols: SymbolInfo[]): void; /** * エラーを表示する * @param message エラーメッセージ * @param details 詳細情報 */ static displayError(message: string, details?: string): void; }