UNPKG

398 BTypeScriptView Raw
1import { DeclarationReflection } from '../reflections/declaration';
2import { Type } from './abstract';
3export declare class ReflectionType extends Type {
4 declaration: DeclarationReflection;
5 readonly type: string;
6 constructor(declaration: DeclarationReflection);
7 clone(): Type;
8 equals(type: ReflectionType): boolean;
9 toObject(): any;
10 toString(): "object" | "function";
11}