Add new MIME types
This commit is contained in:
parent
101041f106
commit
f4a5bc9907
1 changed files with 2 additions and 0 deletions
|
@ -1,10 +1,12 @@
|
|||
export type MIMEType = string & { _mimeTypeBrand: any };
|
||||
|
||||
export const APPLICATION_OCTET_STREAM = 'application/octet-stream' as MIMEType;
|
||||
export const APPLICATION_JSON = 'application/json' as MIMEType;
|
||||
export const AUDIO_AAC = 'audio/aac' as MIMEType;
|
||||
export const AUDIO_MP3 = 'audio/mp3' as MIMEType;
|
||||
export const IMAGE_GIF = 'image/gif' as MIMEType;
|
||||
export const IMAGE_JPEG = 'image/jpeg' as MIMEType;
|
||||
export const VIDEO_MP4 = 'video/mp4' as MIMEType;
|
||||
export const VIDEO_QUICKTIME = 'video/quicktime' as MIMEType;
|
||||
|
||||
export const isJPEG = (value: MIMEType): boolean => value === 'image/jpeg';
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue