ts-api-utils - v3.0.0-rc.1
    Preparing search index...

    Interface VariableInfo

    How an item (type or value) was declared and/or referenced.

    interface VariableInfo {
        declarations: Identifier[];
        domain: DeclarationDomain;
        exported: boolean;
        inGlobalScope: boolean;
        uses: VariableUse[];
    }
    Index

    Properties

    declarations: Identifier[]

    Locations where the item was declared.

    Which space(s) the item is within.

    exported: boolean

    Whether the item was exported from its module or namespace scope.

    inGlobalScope: boolean

    Whether the item's declaration was in the global scope.

    uses: VariableUse[]

    Each reference to the item in the file.