uni-ticket-system/node_modules/@jimp/plugin-threshold/index.d.ts

12 lines
233 B
TypeScript
Raw Normal View History

2023-12-05 02:11:10 +00:00
import { ImageCallback } from '@jimp/core';
interface Threshold {
threshold(opts: {
max: number,
replace?: number,
autoGreyscale?: boolean
}, cb?: ImageCallback<this>): this;
}
export default function(): Threshold;