UNPKG

558 BTypeScriptView Raw
1import { Reflection, ReflectionKind, TraverseCallback } from './abstract';
2import { ReflectionCategory } from '../ReflectionCategory';
3import { ReflectionGroup } from '../ReflectionGroup';
4import { DeclarationReflection } from './declaration';
5export declare class ContainerReflection extends Reflection {
6 children?: DeclarationReflection[];
7 groups?: ReflectionGroup[];
8 categories?: ReflectionCategory[];
9 getChildrenByKind(kind: ReflectionKind): DeclarationReflection[];
10 traverse(callback: TraverseCallback): void;
11 toObject(): any;
12}