Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
MR414N-ID
GitHub Repository: MR414N-ID/botku2
Path: blob/master/node_modules/@jimp/plugin-dither/index.d.ts
1126 views
1
import { ImageCallback } from '@jimp/core';
2
3
interface Dither {
4
dither565(cb?: ImageCallback<this>): this;
5
dither16(cb?: ImageCallback<this>): this;
6
}
7
8
export default function(): Dither;
9
10