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)

23 lines (22 loc) 334 B
/** @format */ /** * Enum representing the different WebP formats. */ export declare enum WebPFormat { /** * Undefined format. */ undefined = 0, /** * Lossy format. */ lossy = 1, /** * Lossless format. */ lossless = 2, /** * Animated format. */ animated = 3 }