interface TypeParameterInstantiation {
    end?: null | number;
    extra?: Record<string, unknown>;
    innerComments?: null | Comment[];
    leadingComments?: null | Comment[];
    loc?: null | SourceLocation;
    params: FlowType[];
    range?: [number, number];
    start?: null | number;
    trailingComments?: null | Comment[];
    type: "TypeParameterInstantiation";
}

Hierarchy (view full)

Properties

end?: null | number
extra?: Record<string, unknown>
innerComments?: null | Comment[]
leadingComments?: null | Comment[]
loc?: null | SourceLocation
params: FlowType[]
range?: [number, number]
start?: null | number
trailingComments?: null | Comment[]
type: "TypeParameterInstantiation"