Interface: WorkspaceDelta
Defined in: src/batteries/dev_tools/types.ts:44
The common result of every engine capability.
Properties
| Property | Type | Description | Defined in |
|---|---|---|---|
added? | Map<string, WorkspaceFile> | Optional inserted-line count; omitted when line diffing is unavailable. | src/batteries/dev_tools/types.ts:48 |
changed? | Map<string, string> | Path-to-text entries describing genuinely changed workspace files. | src/batteries/dev_tools/types.ts:46 |
deleted? | Set<string> | Paths removed from the workspace by this delta. | src/batteries/dev_tools/types.ts:50 |
diagnostics? | RawDiagnostic[] | Engine findings before the registry adds provenance. | src/batteries/dev_tools/types.ts:54 |
renamed? | Map<string, string> | Source-to-destination moves preserving atomic rename semantics. | src/batteries/dev_tools/types.ts:52 |