annotation.ts 208 B

1234567891011
  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. command?: string
  11. }