UNPKG

epc-tds-ts

Version:

EPC Tag Data Standard encoding and decoding library, written in javascript for Node.js

29 lines 1.02 kB
export class Grai170 extends Epc { static EPC_HEADER: number; static TOTAL_BITS: number; static PARTITION_OFFSET: number; static PARTITION_END: number; static SERIAL_OFFSET: number; static SERIAL_END: number; static SERIAL_BITS: number; static MAX_SERIAL_LEN: number; static CHAR_BITS: number; static TAG_URI_TEMPLATE: (filter: any, company: any, asset: any, serial: any) => string; static PID_URI_TEMPLATE: (company: any, asset: any, serial: any) => string; getPartition(): number; setPartition(value: any): Grai170; getGrai(): string; setGrai(grai: any): Grai170; getCompanyPrefix(): number; setCompanyPrefix(value: any): Grai170; getAssetType(): number; setAssetType(value: any): Grai170; getSerial(): string; /** * All values permitted by GS1 General Specifications (up to 16 alphanumeric characters) * @param value */ setSerial(value: any): Grai170; } import { Epc } from "../epc"; //# sourceMappingURL=grai170.d.ts.map