8 lines
145 B
TypeScript
8 lines
145 B
TypeScript
import { ImageCallback } from "@jimp/core";
|
|
|
|
interface Invert {
|
|
invert(cb?: ImageCallback<this>): this;
|
|
}
|
|
|
|
export default function (): Invert;
|