UNPKG

http-directives

Version:

A TypeScript-friendly package that provides strongly-typed HTTP constants

20 lines (18 loc) 590 B
declare class ContentEncodings { static readonly AES128GCM = "aes128gcm"; static readonly BR = "br"; static readonly DEFLATE = "deflate"; static readonly GZIP = "gzip"; static readonly IDENTITY = "identity"; /** @deprecated */ static readonly COMPRESS = "compress"; /** @deprecated */ static readonly PACK200_GZIP = "pack200-gzip"; /** @deprecated */ static readonly SDCH = "sdch"; /** @deprecated */ static readonly X_COMPRESS = "x-compress"; /** @deprecated */ static readonly X_GZIP = "x-gzip"; } export { ContentEncodings };