UNPKG

282 BTypeScriptView Raw
1import { Reflection } from './reflections/abstract';
2export declare class ReflectionCategory {
3 title: string;
4 children: Reflection[];
5 allChildrenHaveOwnDocument: Function;
6 constructor(title: string);
7 private getAllChildrenHaveOwnDocument;
8 toObject(): any;
9}