index.d.ts 191 B

12345678
  1. import { ImageCallback } from '@jimp/core';
  2. interface Dither {
  3. dither565(cb?: ImageCallback<this>): this;
  4. dither16(cb?: ImageCallback<this>): this;
  5. }
  6. export default function(): Dither;