index.d.ts 183 B

1234567
  1. import { Jimp, ImageCallback } from '@jimp/core';
  2. interface Displace {
  3. displace(map: Jimp, offset: number, cb?: ImageCallback<this>): this;
  4. }
  5. export default function(): Displace;