Interface MultiDocumentHighlight

Represents a set of document highlights for a specific Uri.

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

Properties

Properties

highlights: DocumentHighlight[]

The set of highlights for the document.

uri: Uri

The Uri of the document that the highlights belong to.