interface Identifier {
    decorators?: null | Decorator[];
    end?: null | number;
    extra?: Record<string, unknown>;
    innerComments?: null | Comment[];
    leadingComments?: null | Comment[];
    loc?: null | SourceLocation;
    name: string;
    optional?: null | boolean;
    range?: [number, number];
    start?: null | number;
    trailingComments?: null | Comment[];
    type: "Identifier";
    typeAnnotation?: null | Noop | TSTypeAnnotation | TypeAnnotation;
}

Hierarchy (view full)

Properties

decorators?: null | Decorator[]
end?: null | number
extra?: Record<string, unknown>
innerComments?: null | Comment[]
leadingComments?: null | Comment[]
loc?: null | SourceLocation
name: string
optional?: null | boolean
range?: [number, number]
start?: null | number
trailingComments?: null | Comment[]
type: "Identifier"
typeAnnotation?: null | Noop | TSTypeAnnotation | TypeAnnotation