KC's Workspace
    Preparing search index...

    Type Alias _ModelToObject<T>

    _ModelToObject: T extends Primitive
        ? T
        : Required<T> extends Required<ReflectionGroup>
            ? ReflectionGroup
            : Required<T> extends Required<ReflectionCategory>
                ? ReflectionCategory
                : T extends ReflectionVariant[keyof ReflectionVariant]
                    ? ReflectionVariantMap[T["variant"]]
                    : T extends SomeType
                        ? TypeKindMap[T["type"]]
                        : T extends Type
                            ? SomeType
                            : T extends Comment
                                ? Comment
                                : T extends CommentTag
                                    ? CommentTag
                                    : T extends CommentDisplayPart
                                        ? CommentDisplayPart
                                        : T extends SourceReference
                                            ? SourceReference
                                            : (...) extends (...) ? (...) : (...)

    Type Parameters

    • T