Skip to content
1 min read · 141 words

Interface: FileChangeSummary

Defined in: src/batteries/dev_tools/types.ts:57

A summary row for one final workspace change.

Properties

PropertyTypeDescriptionDefined in
added?numberLines inserted; absent when the optional diff peer is unavailable.src/batteries/dev_tools/types.ts:63
from?stringRename 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
pathstringWorkspace-relative file path; for a rename, this is the destination path.src/batteries/dev_tools/types.ts:59
removed?numberLines deleted; absent when the optional diff peer is unavailable.src/batteries/dev_tools/types.ts:65