interface TSTypeParameter {
    const?: null | boolean;
    constraint?: null | TSType;
    default?: null | TSType;
    end?: null | number;
    extra?: Record<string, unknown>;
    in?: null | boolean;
    innerComments?: null | Comment[];
    leadingComments?: null | Comment[];
    loc?: null | SourceLocation;
    name: string;
    out?: null | boolean;
    range?: [number, number];
    start?: null | number;
    trailingComments?: null | Comment[];
    type: "TSTypeParameter";
}

Hierarchy (view full)

Properties

const?: null | boolean
constraint?: null | TSType
default?: null | TSType
end?: null | number
extra?: Record<string, unknown>
in?: null | boolean
innerComments?: null | Comment[]
leadingComments?: null | Comment[]
loc?: null | SourceLocation
name: string
out?: null | boolean
range?: [number, number]
start?: null | number
trailingComments?: null | Comment[]
type: "TSTypeParameter"