EASYAIuniappNewUI/node_modules/@jimp/gif/index.d.ts
2025-02-08 18:50:38 +08:00

18 lines
225 B
TypeScript

import { DecoderFn } from '@jimp/core';
interface Gif {
mime: {
'image/gif': string[]
}
constants: {
MIME_GIF: 'image/gif';
}
decoders: {
'image/gif': DecoderFn
}
}
export default function(): Gif;