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) 314 B
/** @format */ /** * Represents all the probabilities associated with one band. */ export declare class VP8BandProbas { /** * An array of Uint8Array representing the probabilities. */ probas: Uint8Array[]; /** * Constructs a new instance of VP8BandProbas. */ constructor(); }