MCPcopy Create free account
hub / github.com/donghaxkim/react-rewrite / TextEditAnnotation

Interface TextEditAnnotation

packages/shared/src/types.ts:422–433  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

420}
421
422export 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
435export type Annotation = TextAnnotation | ColorOverride | TextEditAnnotation;
436

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected