mirror of
https://github.com/usebruno/bruno.git
synced 2026-07-09 06:55:03 +00:00
* feature: add autocompletion for headers value * chore: rename file to autocompleteConstants and move it to codemirror utils
57 lines
1.2 KiB
JavaScript
57 lines
1.2 KiB
JavaScript
export const MimeTypes = [
|
|
'application/atom+xml',
|
|
'application/ecmascript',
|
|
'application/json',
|
|
'application/vnd.api+json',
|
|
'application/javascript',
|
|
'application/octet-stream',
|
|
'application/ogg',
|
|
'application/pdf',
|
|
'application/postscript',
|
|
'application/rdf+xml',
|
|
'application/rss+xml',
|
|
'application/soap+xml',
|
|
'application/font-woff',
|
|
'application/x-yaml',
|
|
'application/xhtml+xml',
|
|
'application/xml',
|
|
'application/xml-dtd',
|
|
'application/xop+xml',
|
|
'application/zip',
|
|
'application/gzip',
|
|
'application/graphql',
|
|
'application/x-www-form-urlencoded',
|
|
'audio/basic',
|
|
'audio/L24',
|
|
'audio/mp4',
|
|
'audio/mpeg',
|
|
'audio/ogg',
|
|
'audio/vorbis',
|
|
'audio/vnd.rn-realaudio',
|
|
'audio/vnd.wave',
|
|
'audio/webm',
|
|
'image/gif',
|
|
'image/jpeg',
|
|
'image/pjpeg',
|
|
'image/png',
|
|
'image/svg+xml',
|
|
'image/tiff',
|
|
'message/http',
|
|
'message/imdn+xml',
|
|
'message/partial',
|
|
'message/rfc822',
|
|
'multipart/mixed',
|
|
'multipart/alternative',
|
|
'multipart/related',
|
|
'multipart/form-data',
|
|
'multipart/signed',
|
|
'multipart/encrypted',
|
|
'text/cmd',
|
|
'text/css',
|
|
'text/csv',
|
|
'text/html',
|
|
'text/plain',
|
|
'text/vcard',
|
|
'text/xml'
|
|
];
|