interface ChainExpression {
    expression: ChainElement;
    leadingComments?: Comment[];
    loc?: null | SourceLocation;
    range?: [number, number];
    trailingComments?: Comment[];
    type: "ChainExpression";
}

Hierarchy (View Summary)

Properties

expression: ChainElement
leadingComments?: Comment[]
loc?: null | SourceLocation
range?: [number, number]
trailingComments?: Comment[]
type: "ChainExpression"