index.d.ts 233 B

1234567891011
  1. import { ImageCallback } from '@jimp/core';
  2. interface Threshold {
  3. threshold(opts: {
  4. max: number,
  5. replace?: number,
  6. autoGreyscale?: boolean
  7. }, cb?: ImageCallback<this>): this;
  8. }
  9. export default function(): Threshold;