Add map type to body (zj return)

This commit is contained in:
Craig Everett 2025-10-11 15:45:05 +09:00
parent f2e41fcfec
commit 0def0846bf

View File

@ -20,6 +20,6 @@
-type method() :: get | post | options.
-type multipart() :: {multipart, Boundary :: binary()}.
-type body() :: {partial, binary()} | {multipart, [body_part()]} | binary().
-type body() :: {partial, binary()} | {multipart, [body_part()]} | binary() | map().
-type body_part() :: {Field :: binary(), Data :: binary()}
| {Field :: binary(), Name :: binary(), Data :: binary()}.