Interface: FileChangeSummary
Defined in: src/batteries/dev_tools/types.ts:57
A summary row for one final workspace change.
Properties
| Property | Type | Description | Defined in |
|---|---|---|---|
added? | number | Lines inserted; absent when the optional diff peer is unavailable. | src/batteries/dev_tools/types.ts:63 |
from? | string | Rename source path; present if and only if kind is 'renamed'. | src/batteries/dev_tools/types.ts:67 |
kind | "modified" | "added" | "deleted" | "renamed" | Final-state change classification relative to the acquisition workspace. | src/batteries/dev_tools/types.ts:61 |
path | string | Workspace-relative file path; for a rename, this is the destination path. | src/batteries/dev_tools/types.ts:59 |
removed? | number | Lines deleted; absent when the optional diff peer is unavailable. | src/batteries/dev_tools/types.ts:65 |