Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
MR414N-ID
GitHub Repository: MR414N-ID/botku2
Path: blob/master/node_modules/@jimp/tiff/index.d.ts
1804 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