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

Hierarchy (view full)

Properties

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