MCPcopy
hub / github.com/codeaashu/claude-code / Diagnostic

Interface Diagnostic

src/services/diagnosticTracking.ts:14–23  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

12const MAX_DIAGNOSTICS_SUMMARY_CHARS = 4000
13
14export interface Diagnostic {
15 message: string
16 severity: 'Error' | 'Warning' | 'Info' | 'Hint'
17 range: {
18 start: { line: number; character: number }
19 end: { line: number; character: number }
20 }
21 source?: string
22 code?: string
23}
24
25export interface DiagnosticFile {
26 uri: string

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected