Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
MR414N-ID
GitHub Repository: MR414N-ID/botku2
Path: blob/master/node_modules/@jimp/gif/index.d.ts
1126 views
1
import { DecoderFn } from '@jimp/core';
2
3
interface Gif {
4
mime: {
5
'image/gif': string[]
6
}
7
8
constants: {
9
MIME_GIF: 'image/gif';
10
}
11
12
decoders: {
13
'image/gif': DecoderFn
14
}
15
}
16
17
export default function(): Gif;
18
19