UNPKG

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