FileDiffDetail interface
Provides properties that describe detailed file differences including line content
Properties
| change |
The type of change (add, delete, rename, edit, etc.) |
| is |
Whether the item is a folder. |
| is |
Whether the item has the Linux executable bit set. |
| is |
Whether the item is a symbolic link. |
| line |
The collection of detailed line diff blocks |
| original |
Original path of item if different from current path. |
| path | Current path of item |
Property Details
changeType
The type of change (add, delete, rename, edit, etc.)
changeType: VersionControlChangeType
Property Value
isFolder
Whether the item is a folder.
isFolder: boolean
Property Value
boolean
isLinuxExecutable
Whether the item has the Linux executable bit set.
isLinuxExecutable: boolean
Property Value
boolean
isSymbolicLink
Whether the item is a symbolic link.
isSymbolicLink: boolean
Property Value
boolean
lineDiffBlocks
The collection of detailed line diff blocks
lineDiffBlocks: LineDiffBlockDetail[]
Property Value
originalPath
Original path of item if different from current path.
originalPath: string
Property Value
string
path
Current path of item
path: string
Property Value
string