image-js
Version:
Image processing and manipulation in JavaScript
11 lines • 398 B
TypeScript
import { Image } from '../Image.js';
import type { Mask } from '../Mask.js';
export interface InvertOptions {
/**
* Image to which the inverted image has to be put.
*/
out?: Image | Mask;
}
export declare function invert(image: Image, options?: InvertOptions): Image;
export declare function invert(image: Mask, options?: InvertOptions): Mask;
//# sourceMappingURL=invert.d.ts.map