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)

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