Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
jajbshjahavahh
GitHub Repository: jajbshjahavahh/Gojo-Satoru
Path: blob/master/node_modules/@jimp/plugin-invert/index.d.ts
2591 views
1
import { ImageCallback } from '@jimp/core';
2
3
interface Invert {
4
invert(cb?: ImageCallback<this>): this;
5
}
6
7
export default function(): Invert;
8
9