Chatoyant - v0.2.1
    Preparing search index...

    Type Alias InferSchema<T>

    InferSchema: {
        [K in keyof T as T[K] extends FieldDescriptor ? K : never]: T[K] extends FieldDescriptor<
            infer V,
        >
            ? V extends SchemaInstance ? InferSchema<V> : V
            : never
    }

    Type helper to infer the plain object type from a schema. Extracts value types from field descriptors.

    Type Parameters