schema-components - v3.7.0
    Preparing search index...

    Interface __SchemaInferenceFellBack

    Marker type emitted when OpenAPI $ref resolution hits the type-level recursion depth limit. Instead of silently falling back to Record<string, FieldOverride>, produces this branded type so consumers can detect it via conditional types.

    Usage:

    type Fields = InferRequestBodyFields<Doc, "/users", "post">;
    type IsFallback = Fields extends __SchemaInferenceFellBack ? true : false;
    interface __SchemaInferenceFellBack {
        __schemaInferenceFallback: typeof __schemaInferenceFallback;
    }
    Index

    Properties

    __schemaInferenceFallback: typeof __schemaInferenceFallback