UNPKG

http-directives

Version:

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

23 lines (21 loc) 580 B
// src/directives/content-encodings.ts var ContentEncodings = class { }; ContentEncodings.AES128GCM = "aes128gcm"; ContentEncodings.BR = "br"; ContentEncodings.DEFLATE = "deflate"; ContentEncodings.GZIP = "gzip"; ContentEncodings.IDENTITY = "identity"; /** @deprecated */ ContentEncodings.COMPRESS = "compress"; /** @deprecated */ ContentEncodings.PACK200_GZIP = "pack200-gzip"; /** @deprecated */ ContentEncodings.SDCH = "sdch"; /** @deprecated */ ContentEncodings.X_COMPRESS = "x-compress"; /** @deprecated */ ContentEncodings.X_GZIP = "x-gzip"; export { ContentEncodings };