UNPKG

image-in-browser

Version:

Package for encoding / decoding images, transforming images, applying filters, drawing primitives on images on the client side (no need for server Node.js)

15 lines (14 loc) 246 B
/** @format */ /** * Enum representing the modes for solarization. */ export declare enum SolarizeMode { /** * Mode for highlighting areas. */ highlights = 0, /** * Mode for shadowing areas. */ shadows = 1 }