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