| 469 | | { type: "deleteRestore"; deleteId: string }; |
| 470 | |
| 471 | export interface ChangeEntry { |
| 472 | id: string; |
| 473 | timestamp: number; |
| 474 | type: "property" | "move" | "textEdit" | "textAnnotation" | "commitBatch" | "clone" | "delete"; |
| 475 | componentName: string; |
| 476 | filePath: string; |
| 477 | summary: string; |
| 478 | state: "active" | "reverted" | "pending"; |
| 479 | propertyKey?: string; |
| 480 | elementIdentity?: ElementIdentity; |
| 481 | revertData: RevertData; |
| 482 | } |
nothing calls this directly
no outgoing calls
no test coverage detected