File tree Expand file tree Collapse file tree 1 file changed +15
-2
lines changed
Expand file tree Collapse file tree 1 file changed +15
-2
lines changed Original file line number Diff line number Diff line change 66
77enum MimeType: string
88{
9- case FILE_CSV = 'text/csv ' ;
10- case FILE_PDF = 'application/pdf ' ;
9+ case APPLICATION_PDF = 'application/pdf ' ;
10+ case APPLICATION_JAVASCRIPT = 'application/x-javascript ' ;
11+ case APPLICATION_PYTHON = 'application/x-python ' ;
12+
13+ case TEXT_PLAIN = 'text/plain ' ;
14+ case TEXT_HTML = 'text/html ' ;
15+ case TEXT_CSS = 'text/css ' ;
16+ case TEXT_MARKDOWN = 'text/md ' ;
17+ case TEXT_CSV = 'text/csv ' ;
18+ case TEXT_XML = 'text/xml ' ;
19+ case TEXT_RTF = 'text/rtf ' ;
20+
1121 case IMAGE_PNG = 'image/png ' ;
1222 case IMAGE_JPEG = 'image/jpeg ' ;
1323 case IMAGE_HEIC = 'image/heic ' ;
1424 case IMAGE_HEIF = 'image/heif ' ;
1525 case IMAGE_WEBP = 'image/webp ' ;
26+
27+ // @deprecated
28+ case FILE_PDF = 'application/pdf ' ;
1629}
You can’t perform that action at this time.
0 commit comments