UNPKG

667 BTypeScriptView Raw
1import { Reflection, ReflectionKind } from './reflections/abstract';
2import { ReflectionCategory } from './ReflectionCategory';
3export declare class ReflectionGroup {
4 title: string;
5 kind: ReflectionKind;
6 children: Reflection[];
7 cssClasses?: string;
8 allChildrenHaveOwnDocument: Function;
9 allChildrenAreInherited?: boolean;
10 allChildrenArePrivate?: boolean;
11 allChildrenAreProtectedOrPrivate?: boolean;
12 allChildrenAreExternal?: boolean;
13 someChildrenAreExported?: boolean;
14 categories?: ReflectionCategory[];
15 constructor(title: string, kind: ReflectionKind);
16 private getAllChildrenHaveOwnDocument;
17 toObject(): any;
18}