| 12 | const MAX_DIAGNOSTICS_SUMMARY_CHARS = 4000 |
| 13 | |
| 14 | export 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 | |
| 25 | export interface DiagnosticFile { |
| 26 | uri: string |
nothing calls this directly
no outgoing calls
no test coverage detected