import type { Sharp } from "../types.js"; export async function invert(image: Sharp): Promise { return image.negate(); }