UNPKG

@bitjson/typedoc

Version:

Create api documentation for TypeScript projects.

10 lines (9 loc) 292 B
export declare abstract class Type { readonly type: string; abstract clone(): Type; equals(type: Type): boolean; toObject(): any; toString(): string; static isTypeListSimilar(a: Type[], b: Type[]): boolean; static isTypeListEqual(a: Type[], b: Type[]): boolean; }