@cloudamqp/amqp-client
    Preparing search index...

    Type Alias ResolveMessageBody<P>

    ResolveMessageBody: keyof P extends never
        ? Uint8Array
        | null
        : InferParserOutput<P[keyof P & string]> | Uint8Array | null

    Resolve the message body type for consuming. Union of all parser output types + Uint8Array | null (for unrecognized content-types).

    Type Parameters