1 | import { DeclarationReflection } from '../reflections/declaration';
|
2 | import { Type } from './abstract';
|
3 | export 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 | }
|