| 420 | } |
| 421 | |
| 422 | export interface TextEditAnnotation { |
| 423 | type: "textEdit"; |
| 424 | id: string; |
| 425 | componentName: string; |
| 426 | filePath: string; |
| 427 | lineNumber: number; |
| 428 | columnNumber: number; |
| 429 | originalText: string; |
| 430 | newText: string; |
| 431 | cursorOffset?: number; |
| 432 | textAnchor?: TextEditAnchor; |
| 433 | } |
| 434 | |
| 435 | export type Annotation = TextAnnotation | ColorOverride | TextEditAnnotation; |
| 436 |
nothing calls this directly
no outgoing calls
no test coverage detected