The result of a hover request.

interface Hover {
    contents: MarkupContent | MarkedString | MarkedString[];
    range?: Range;
}

Properties

Properties

The hover's content

range?: Range

An optional range inside the text document that is used to visualize the hover, e.g. by changing the background color.