Interface DocumentSymbolRegistrationOptions

Registration options for a DocumentSymbolRequest.

interface DocumentSymbolRegistrationOptions {
    documentSelector: null | DocumentSelector;
    label?: string;
    workDoneProgress?: boolean;
}

Hierarchy (View Summary)

Properties

documentSelector: null | DocumentSelector

A document selector to identify the scope of the registration. If set to null the document selector provided on the client side will be used.

label?: string

A human-readable string that is shown when multiple outlines trees are shown for the same document.

3.16.0

workDoneProgress?: boolean