@zxing/library
Version:
TypeScript port of ZXing multi-format 1D/2D barcode image processing library.
11 lines (10 loc) • 383 B
TypeScript
import DecodedObject from './DecodedObject';
export default class DecodedInformation extends DecodedObject {
private readonly newString;
private readonly remainingValue;
private readonly remaining;
constructor(newPosition: number, newString: string, remainingValue?: number);
getNewString(): string;
isRemaining(): boolean;
getRemainingValue(): number;
}