Interface Identifier

interface Identifier {
    argumentTypes?: null | TypeDescriptions[];
    id: number;
    name: string;
    nodeType: "Identifier";
    overloadedDeclarations: number[];
    referencedDeclaration?: null | number;
    src: string;
    typeDescriptions: TypeDescriptions;
}

Properties

argumentTypes?: null | TypeDescriptions[]
id: number
name: string
nodeType: "Identifier"
overloadedDeclarations: number[]
referencedDeclaration?: null | number
src: string
typeDescriptions: TypeDescriptions