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