interface Change<T> {
    changeType?: VersionControlChangeType;
    item?: T;
    newContent?: ItemContent;
    sourceServerItem?: string;
    url?: string;
}

Type Parameters

  • T

Hierarchy (View Summary)

Properties

The type of change that was made to the item.

item?: T

Current version.

newContent?: ItemContent

Content of the item after the change.

sourceServerItem?: string

Path of the item on the server.

url?: string

URL to retrieve the item.