@bitjson/typedoc
Version:
Create api documentation for TypeScript projects.
10 lines (9 loc) • 399 B
TypeScript
import { Type, TypeParameterType } from '../types/index';
import { Reflection, TypeContainer } from './abstract';
import { DeclarationReflection } from './declaration';
export declare class TypeParameterReflection extends Reflection implements TypeContainer {
parent?: DeclarationReflection;
type?: Type;
constructor(type: TypeParameterType, parent?: Reflection);
toObject(): any;
}