interface VariableDeclarator {
    id: Pattern;
    init?: null | Expression;
    leadingComments?: Comment[];
    loc?: null | SourceLocation;
    range?: [number, number];
    trailingComments?: Comment[];
    type: "VariableDeclarator";
}

Hierarchy (View Summary)

Properties

init?: null | Expression
leadingComments?: Comment[]
loc?: null | SourceLocation
range?: [number, number]
trailingComments?: Comment[]
type: "VariableDeclarator"