diff --git a/src/shared/types/MIMEType.ts b/src/shared/types/MIMEType.ts new file mode 100644 index 00000000..f5d1fa4b --- /dev/null +++ b/src/shared/types/MIMEType.ts @@ -0,0 +1,14 @@ +const MIMEType = { + JSON: 'application/json', + HTML: 'text/html', + TEXT: 'text/plain', + FORM: 'application/x-www-form-urlencoded', + MULTIPART: 'multipart/form-data', + PDF: 'application/pdf', + IMAGE: 'image/*', + AUDIO: 'audio/*', + VIDEO: 'video/*', + ANY: '*/*', +} as const satisfies Record; + +export default MIMEType;