mirror of
https://github.com/GoogleChromeLabs/squoosh.git
synced 2025-11-14 17:49:52 +00:00
8 lines
199 B
TypeScript
8 lines
199 B
TypeScript
export const name = 'WASM AVIF Decoder';
|
|
|
|
const supportedMimeTypes = ['image/avif'];
|
|
|
|
export function canHandleMimeType(mimeType: string): boolean {
|
|
return supportedMimeTypes.includes(mimeType);
|
|
}
|