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