Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
jajbshjahavahh
GitHub Repository: jajbshjahavahh/Gojo-Satoru
Path: blob/master/node_modules/@jimp/tiff/index.d.ts
2591 views
1
import { DecoderFn, EncoderFn } from '@jimp/core';
2
3
interface Tiff {
4
mime: { 'image/tiff': string[] }
5
decoders: {
6
'image/tiff': DecoderFn
7
}
8
encoders: {
9
'image/tiff': EncoderFn
10
}
11
constants: {
12
MIME_TIFF: 'image/tiff';
13
}
14
}
15
16
export default function(): Tiff;
17
18