Chatoyant - v0.2.1
    Preparing search index...

    Type Alias Proxied<T>

    Proxied: {
        [K in keyof T]: T[K] extends FieldDescriptor<infer V>
            ? V extends SchemaInstance ? Proxied<V> : V
            : T[K]
    } & { "[RAW_INSTANCE]": T; "[IS_PROXIED]": true }

    Type representing a proxied schema instance where field descriptors are unwrapped to their value types for clean access.

    Type Parameters