@bitjson/typedoc
Version:
Create api documentation for TypeScript projects.
19 lines (18 loc) • 667 B
TypeScript
import { Reflection, ReflectionKind } from './reflections/abstract';
import { ReflectionCategory } from './ReflectionCategory';
export declare class ReflectionGroup {
title: string;
kind: ReflectionKind;
children: Reflection[];
cssClasses?: string;
allChildrenHaveOwnDocument: Function;
allChildrenAreInherited?: boolean;
allChildrenArePrivate?: boolean;
allChildrenAreProtectedOrPrivate?: boolean;
allChildrenAreExternal?: boolean;
someChildrenAreExported?: boolean;
categories?: ReflectionCategory[];
constructor(title: string, kind: ReflectionKind);
private getAllChildrenHaveOwnDocument;
toObject(): any;
}