Interface ContentChangeLocation

Content change location type.

interface ContentChangeLocation {
    context: TextDocumentContentChangeDelta;
    type: CONTENT_CHANGE;
    uri: URI;
}

Hierarchy (view full)

Properties

Properties

context: TextDocumentContentChangeDelta

A text document content change deltas as the context.

The type, that is always content change.

uri: URI

The URI of the resource opened in the editor.