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