KC's Workspace
    Preparing search index...

    Interface ReflectionGroup

    Helper to describe a set of serialized properties. Primitive types are returned directly, while other models are first passed through ModelToObject. This helper removes the readonly modifier from properties since the result of serialization is a plain object that consumers may modify as they choose, TypeDoc doesn't care.

    interface ReflectionGroup {
        categories?: ReflectionCategory[];
        children?: ReflectionId[];
        description?: CommentDisplayPart[];
        title: string;
    }

    Hierarchy (View Summary)

    Index
    categories?: ReflectionCategory[]

    Categories contained within this group.

    children?: ReflectionId[]
    description?: CommentDisplayPart[]

    User specified description via @groupDescription, if specified.

    title: string

    The title, a string representation of the typescript kind, of this group.