chore: add jimp dependency, icon padding script, and update configuration
This commit is contained in:
+16
@@ -0,0 +1,16 @@
|
||||
import { DecoderFn, EncoderFn } from "@jimp/core";
|
||||
|
||||
interface Tiff {
|
||||
mime: { "image/tiff": string[] };
|
||||
decoders: {
|
||||
"image/tiff": DecoderFn;
|
||||
};
|
||||
encoders: {
|
||||
"image/tiff": EncoderFn;
|
||||
};
|
||||
constants: {
|
||||
MIME_TIFF: "image/tiff";
|
||||
};
|
||||
}
|
||||
|
||||
export default function (): Tiff;
|
||||
Reference in New Issue
Block a user