Files

9 lines
191 B
TypeScript
Raw Permalink Normal View History

2025-08-11 11:51:38 +08:00
import { ImageCallback } from '@jimp/core';
interface Dither {
dither565(cb?: ImageCallback<this>): this;
dither16(cb?: ImageCallback<this>): this;
}
export default function(): Dither;