Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | /**
* Base interface for all analysis errors.
*
* All analyzer error interfaces extend this common base,
* providing a consistent structure for error reporting.
*/
interface IBaseAnalysisError {
/** Error code (e.g., E0381, E0800) */
code: string;
/** Line number where the error occurred */
line: number;
/** Column number where the error occurred */
column: number;
/** Human-readable error message */
message: string;
/** Optional help text with suggested fix */
helpText?: string;
}
export default IBaseAnalysisError;
|