Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
jajbshjahavahh
GitHub Repository: jajbshjahavahh/Gojo-Satoru
Path: blob/master/node_modules/@jimp/plugin-threshold/index.d.ts
2591 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