UNPKG

@zxing/library

Version:

TypeScript port of ZXing multi-format 1D/2D barcode image processing library.

20 lines (19 loc) 557 B
import BinaryBitmap from '../BinaryBitmap'; import DecodeHintType from '../DecodeHintType'; import Result from '../Result'; /** * Implementation of this interface attempt to read several barcodes from one image. * * @see com.google.zxing.Reader * @author Sean Owen */ export default interface MultipleBarcodeReader { /** * @throws NotFoundException */ decodeMultiple(image: BinaryBitmap): Result[]; /** * @throws NotFoundException */ decodeMultiple(image: BinaryBitmap, hints: Map<DecodeHintType, any>): Result[]; }