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