VS Code API
    Preparing search index...

    Interface LocationLink

    Represents the connection of two locations. Provides additional metadata over normal locations, including an origin range.

    interface LocationLink {
        originSelectionRange?: Range;
        targetRange: Range;
        targetSelectionRange?: Range;
        targetUri: Uri;
    }
    Index

    Properties

    originSelectionRange?: Range

    Span of the origin of this link.

    Used as the underlined span for mouse definition hover. Defaults to the word range at the definition position.

    targetRange: Range

    The full target range of this link.

    targetSelectionRange?: Range

    The span of this link.

    targetUri: Uri

    The target resource identifier of this link.