Skip to content

Commit 20a92a8

Browse files
Merge pull request #137 from brandongregoryscott/feature/http-header-content-length
Add ContentLength among other common headers
2 parents 9574b00 + d7bde65 commit 20a92a8

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

src/enumerations/http-header.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
11
enum HttpHeader {
22
Accept = "Accept",
3+
AcceptEncoding = "Accept-Encoding",
4+
AcceptLanguage = "Accept-Language",
35
CacheControl = "Cache-Control",
6+
ContentLength = "Content-Length",
47
ContentType = "Content-Type",
8+
Cookie = "Cookie",
9+
Date = "Date",
10+
UserAgent = "User-Agent",
511
}
612

713
export { HttpHeader };

0 commit comments

Comments
 (0)