Interface FindReferencesOptions

interface FindReferencesOptions {
    documentUri?: URI;
    includeDeclaration?: boolean;
    onlyLocal?: boolean;
}

Properties

documentUri?: URI

When set, the findReferences method will only return references/declarations from the specified document.

includeDeclaration?: boolean

Whether the returned list of references should include the declaration.

onlyLocal?: boolean

Since v1.2.0. Please use documentUri instead.