Type Utils
    Preparing search index...

    Type Alias ObjectTree<T>

    type ObjectTree<T> = {
        tree: {
            [K in keyof T]: V1.Struct<
                T[K] extends PrimitiveType ? GetPrimitiveTag<T[K]> : "object",
                T[K],
            >
        };
    }

    Type Parameters

    • T
    Index

    Properties

    Properties

    tree: {
        [K in keyof T]: V1.Struct<
            T[K] extends PrimitiveType ? GetPrimitiveTag<T[K]> : "object",
            T[K],
        >
    }