index.d.ts 191 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 import { ImageCallback } from '@jimp/core'; interface Dither { dither565(cb?: ImageCallback<this>): this; dither16(cb?: ImageCallback<this>): this; } export default function(): Dither;