A change.

interface TfvcChange {
    changeType?: VersionControlChangeType;
    item?: TfvcItem;
    mergeSources?: TfvcMergeSource[];
    newContent?: ItemContent;
    pendingVersion?: number;
    sourceServerItem?: string;
    url?: string;
}

Hierarchy (View Summary)

Properties

The type of change that was made to the item.

item?: TfvcItem

Current version.

mergeSources?: TfvcMergeSource[]

List of merge sources in case of rename or branch creation.

newContent?: ItemContent

Content of the item after the change.

pendingVersion?: number

Version at which a (shelved) change was pended against

sourceServerItem?: string

Path of the item on the server.

url?: string

URL to retrieve the item.