UNPKG

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