interface VariableDeclarator {
    definite?: null | boolean;
    end?: null | number;
    extra?: Record<string, unknown>;
    id: LVal;
    init?: null | Expression;
    innerComments?: null | Comment[];
    leadingComments?: null | Comment[];
    loc?: null | SourceLocation;
    range?: [number, number];
    start?: null | number;
    trailingComments?: null | Comment[];
    type: "VariableDeclarator";
}

Hierarchy (view full)

Properties

definite?: null | boolean
end?: null | number
extra?: Record<string, unknown>
id: LVal
init?: null | Expression
innerComments?: null | Comment[]
leadingComments?: null | Comment[]
loc?: null | SourceLocation
range?: [number, number]
start?: null | number
trailingComments?: null | Comment[]
type: "VariableDeclarator"