index.d.ts 212 B

12345678
  1. import { ImageCallback } from '@jimp/core';
  2. interface Fisheye {
  3. fishEye(opts?: { r: number }, cb?: ImageCallback<this>): this;
  4. fishEye(cb?: ImageCallback<this>): this;
  5. }
  6. export default function(): Fisheye;