interface TSInstantiationExpression {
    end?: null | number;
    expression: Expression;
    extra?: Record<string, unknown>;
    innerComments?: null | Comment[];
    leadingComments?: null | Comment[];
    loc?: null | SourceLocation;
    range?: [number, number];
    start?: null | number;
    trailingComments?: null | Comment[];
    type: "TSInstantiationExpression";
    typeParameters?: null | TSTypeParameterInstantiation;
}

Hierarchy (view full)

Properties

end?: null | number
expression: Expression
extra?: Record<string, unknown>
innerComments?: null | Comment[]
leadingComments?: null | Comment[]
loc?: null | SourceLocation
range?: [number, number]
start?: null | number
trailingComments?: null | Comment[]
type: "TSInstantiationExpression"
typeParameters?: null | TSTypeParameterInstantiation