UNPKG

zxing-wasm

Version:

ZXing-C++ WebAssembly as an ES/CJS module with types

18 lines (17 loc) 328 B
/** * Barcode symbol in the shape of a one-channel image. */ export interface BarcodeSymbol { /** * Image data of the barcode symbol. */ data: Uint8ClampedArray; /** * Width of the barcode symbol. */ width: number; /** * Height of the barcode symbol. */ height: number; }