annotation.ts 188 B

12345678910
  1. export type Annotation = {
  2. row: number
  3. type: 'info' | 'warning' | 'error'
  4. text: string
  5. source?: string
  6. ruleId?: string
  7. id: string
  8. entryIndex: number
  9. firstOnLine: boolean
  10. }