UNPKG

309 BTypeScriptView Raw
1import { Type } from './abstract';
2export declare class TypeParameterType extends Type {
3 readonly name: string;
4 constraint?: Type;
5 readonly type: string;
6 constructor(name: string);
7 clone(): Type;
8 equals(type: TypeParameterType): boolean;
9 toObject(): any;
10 toString(): string;
11}