1 | import { Type } from './abstract';
|
2 | export 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 | }
|