8 lines
184 B
TypeScript
8 lines
184 B
TypeScript
import { Jimp, ImageCallback } from "@jimp/core";
|
|
|
|
interface Displace {
|
|
displace(map: Jimp, offset: number, cb?: ImageCallback<this>): this;
|
|
}
|
|
|
|
export default function (): Displace;
|