Interface MultiDocumentHighlight

Expand description

Represents a set of document highlights for a specific Uri.

interface MultiDocumentHighlight {
    highlights: DocumentHighlight[];
    uri: Uri;
}

Properties§

§highlights: DocumentHighlight[]

The set of highlights for the document.

§uri: Uri

The Uri of the document that the highlights belong to.