@bitjson/typedoc
Version:
Create api documentation for TypeScript projects.
12 lines (11 loc) • 398 B
TypeScript
import { DeclarationReflection } from '../reflections/declaration';
import { Type } from './abstract';
export declare class ReflectionType extends Type {
declaration: DeclarationReflection;
readonly type: string;
constructor(declaration: DeclarationReflection);
clone(): Type;
equals(type: ReflectionType): boolean;
toObject(): any;
toString(): "object" | "function";
}