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)

12 lines (11 loc) 220 B
/** * Represents a 32-bit Huffman code. * * @format */ export declare class HuffmanCode32 { /** Number of bits in the Huffman code. */ bits: number; /** Value of the Huffman code. */ value: number; }