index.d.ts 144 B

1234567
  1. import { ImageCallback } from '@jimp/core';
  2. interface Invert {
  3. invert(cb?: ImageCallback<this>): this;
  4. }
  5. export default function(): Invert;