feat(format): bmp format (#5197)
This commit is contained in:
parent
1fbbb5a236
commit
ec6b56f63c
2 changed files with 2 additions and 0 deletions
|
@ -7,6 +7,7 @@ describe('mimeTypes', () => {
|
|||
{ mimetype: 'image/ari', extension: '.ari' },
|
||||
{ mimetype: 'image/arw', extension: '.arw' },
|
||||
{ mimetype: 'image/avif', extension: '.avif' },
|
||||
{ mimetype: 'image/bmp', extension: '.bmp' },
|
||||
{ mimetype: 'image/cap', extension: '.cap' },
|
||||
{ mimetype: 'image/cin', extension: '.cin' },
|
||||
{ mimetype: 'image/cr2', extension: '.cr2' },
|
||||
|
|
|
@ -63,6 +63,7 @@ const image: Record<string, string[]> = {
|
|||
'.ari': ['image/ari', 'image/x-arriflex-ari'],
|
||||
'.arw': ['image/arw', 'image/x-sony-arw'],
|
||||
'.avif': ['image/avif'],
|
||||
'.bmp': ['image/bmp'],
|
||||
'.cap': ['image/cap', 'image/x-phaseone-cap'],
|
||||
'.cin': ['image/cin', 'image/x-phantom-cin'],
|
||||
'.cr2': ['image/cr2', 'image/x-canon-cr2'],
|
||||
|
|
Loading…
Reference in a new issue