Added content type

This commit is contained in:
sianida26 2024-03-01 21:02:59 +07:00
parent fb20753c9d
commit 419ebf3d51

14
src/types/ContentType.d.ts vendored Normal file
View File

@ -0,0 +1,14 @@
type ContentType =
| "application/json"
| "application/x-www-form-urlencoded"
| "multipart/form-data"
| "text/plain"
| "text/html"
| "application/xml"
| "text/xml"
| "application/pdf"
| "image/jpeg"
| "image/png"
| "image/gif";
export default ContentType;