UNPKG

@zxing/library

Version:

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

9 lines (8 loc) 264 B
import DecodedObject from './DecodedObject'; export default class DecodedChar extends DecodedObject { private readonly value; static readonly FNC1 = "$"; constructor(newPosition: number, value: string); getValue(): string; isFNC1(): boolean; }