interface OptionalCallExpression {
    arguments: (ArgumentPlaceholder | SpreadElement | Expression)[];
    callee: Expression;
    end?: null | number;
    extra?: Record<string, unknown>;
    innerComments?: null | Comment[];
    leadingComments?: null | Comment[];
    loc?: null | SourceLocation;
    optional: boolean;
    range?: [number, number];
    start?: null | number;
    trailingComments?: null | Comment[];
    type: "OptionalCallExpression";
    typeArguments?: null | TypeParameterInstantiation;
    typeParameters?: null | TSTypeParameterInstantiation;
}

Hierarchy (view full)

Properties

callee: Expression
end?: null | number
extra?: Record<string, unknown>
innerComments?: null | Comment[]
leadingComments?: null | Comment[]
loc?: null | SourceLocation
optional: boolean
range?: [number, number]
start?: null | number
trailingComments?: null | Comment[]
type: "OptionalCallExpression"
typeArguments?: null | TypeParameterInstantiation
typeParameters?: null | TSTypeParameterInstantiation