index.d.ts 183 Bytes
import { Jimp, ImageCallback } from '@jimp/core';

interface Displace {
  displace(map: Jimp, offset: number, cb?: ImageCallback<this>): this;
}

export default function(): Displace;