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

Interface ChangeEntry

packages/shared/src/types.ts:471–482  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

469 | { type: "deleteRestore"; deleteId: string };
470
471export 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}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected