mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2026-04-20 08:28:17 +01:00
10 lines
398 B
TypeScript
10 lines
398 B
TypeScript
/**
|
|
* @prettier
|
|
*/
|
|
export type MIMEType = string & { _mimeTypeBrand: any };
|
|
|
|
export const isJPEG = (value: MIMEType): boolean => value === 'image/jpeg';
|
|
export const isImage = (value: MIMEType): boolean => value.startsWith('image/');
|
|
export const isVideo = (value: MIMEType): boolean => value.startsWith('video/');
|
|
export const isAudio = (value: MIMEType): boolean => value.startsWith('audio/');
|