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