Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
MR414N-ID
GitHub Repository: MR414N-ID/botku2
Path: blob/master/node_modules/@jimp/bmp/index.d.ts
1126 views
1
import { DecoderFn, EncoderFn } from '@jimp/core';
2
3
interface Bmp {
4
constants: {
5
MIME_BMP: 'image/bmp';
6
MIME_X_MS_BMP: 'image/x-ms-bmp';
7
}
8
9
mime: {
10
'image/bmp': string[]
11
}
12
13
decoders: {
14
'image/bmp': DecoderFn
15
'image/x-ms-bmp': DecoderFn
16
}
17
18
encoders: {
19
'image/bmp': EncoderFn
20
'image/x-ms-bmp': EncoderFn
21
}
22
}
23
24
export default function(): Bmp;
25
26