1 | export declare abstract class Type {
|
2 | readonly type: string;
|
3 | abstract clone(): Type;
|
4 | equals(type: Type): boolean;
|
5 | toObject(): any;
|
6 | toString(): string;
|
7 | static isTypeListSimilar(a: Type[], b: Type[]): boolean;
|
8 | static isTypeListEqual(a: Type[], b: Type[]): boolean;
|
9 | }
|