diff options
Diffstat (limited to 'src/cowboy.erl')
-rw-r--r-- | src/cowboy.erl | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/cowboy.erl b/src/cowboy.erl index e2868a1..11a74c1 100644 --- a/src/cowboy.erl +++ b/src/cowboy.erl @@ -23,6 +23,9 @@ -type http_headers() :: [{binary(), iodata()}]. -export_type([http_headers/0]). +-type http_status() :: non_neg_integer() | binary(). +-export_type([http_status/0]). + -type http_version() :: 'HTTP/1.1' | 'HTTP/1.0'. -export_type([http_version/0]). |