Beignet API reference
    Preparing search index...

    Type Alias InferBody<TContract>

    InferBody: TContract["method"] extends BodyHttpMethod
        ? TContract["body"] extends StandardSchemaV1
            ? InferInput<TContract["body"]>
            : undefined
        : undefined

    Infer JSON request body accepted by a client call from a contract.

    Type Parameters