declare enum ContentType { ANY = "*/*", CSS = "text/css", GIF = "image/gif", HTML = "text/html", ICO = "image/vnd.microsoft.icon", JPEG = "image/jpeg", JS = "text/javascript", JSON = "application/json", MP3 = "audio/mpeg", MULTIPART = "multipart/form-data", PNG = "image/png", TEXT = "text/plain", URL_ENCODED = "application/x-www-form-urlencoded", WAV = "audio/wav" } export default ContentType;