Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
MR414N-ID
GitHub Repository: MR414N-ID/botku2
Path: blob/master/node_modules/@jimp/plugin-threshold/index.d.ts
1126 views
1
import { ImageCallback } from '@jimp/core';
2
3
interface Threshold {
4
threshold(opts: {
5
max: number,
6
replace?: number,
7
autoGreyscale?: boolean
8
}, cb?: ImageCallback<this>): this;
9
}
10
11
export default function(): Threshold;
12
13