UNPKG

399 BTypeScriptView Raw
1import { Type, TypeParameterType } from '../types/index';
2import { Reflection, TypeContainer } from './abstract';
3import { DeclarationReflection } from './declaration';
4export declare class TypeParameterReflection extends Reflection implements TypeContainer {
5 parent?: DeclarationReflection;
6 type?: Type;
7 constructor(type: TypeParameterType, parent?: Reflection);
8 toObject(): any;
9}