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)

13 lines (12 loc) 244 B
/** @format */ /** * Enum representing different types of quantizers. */ export declare enum QuantizerType { /** Octree quantizer */ octree = 0, /** Neural quantizer */ neural = 1, /** Binary quantizer */ binary = 2 }