vending-machine/mobile/node_modules/@jimp/plugin-dither/index.d.ts
2026-04-03 06:07:13 +08:00

9 lines
191 B
TypeScript

import { ImageCallback } from '@jimp/core';
interface Dither {
dither565(cb?: ImageCallback<this>): this;
dither16(cb?: ImageCallback<this>): this;
}
export default function(): Dither;