Support for request types, most of the logic is copied from nextlove w/ some tweaks
Because request has it overloaded, we will have to use req.jsonBody instead of req.body. Same goes for form data, which will go from req.formData to req.formDataBody. Happy to come up with better naming here.
Support for request types, most of the logic is copied from
nextlove
w/ some tweaksBecause request has it overloaded, we will have to use
req.jsonBody
instead ofreq.body
. Same goes for form data, which will go fromreq.formData
toreq.formDataBody
. Happy to come up with better naming here.