18 lines
225 B
TypeScript
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;
|