interface LocationLink {
    originSelectionRange?: IRange;
    range: IRange;
    targetSelectionRange?: IRange;
    uri: Uri;
}

Properties

originSelectionRange?: IRange

A range to select where this link originates from.

range: IRange

The full range this link points to.

targetSelectionRange?: IRange

A range to select this link points to. Must be contained in LocationLink.range.

uri: Uri

The target uri this link points to.