uni-ticket-system/node_modules/@jimp/plugin-dither/index.d.ts

9 lines
191 B
TypeScript
Raw Normal View History

2023-12-05 02:11:10 +00:00
import { ImageCallback } from '@jimp/core';
interface Dither {
dither565(cb?: ImageCallback<this>): this;
dither16(cb?: ImageCallback<this>): this;
}
export default function(): Dither;