epc-tds-ts
Version:
EPC Tag Data Standard encoding and decoding library, written in javascript for Node.js
29 lines • 1.03 kB
TypeScript
export class Sgln195 extends Epc {
static EPC_HEADER: number;
static TOTAL_BITS: number;
static PARTITION_OFFSET: number;
static PARTITION_END: number;
static EXTENSION_OFFSET: number;
static EXTENSION_END: number;
static EXTENSION_BITS: number;
static CHAR_BITS: number;
static MAX_SERIAL_LEN: number;
static TAG_URI_TEMPLATE: (filter: any, company: any, location: any, extension: any) => string;
static PID_URI_TEMPLATE: (company: any, location: any, extension: any) => string;
getPartition(): number;
setPartition(value: any): Sgln195;
getGln(): string;
setGln(gln: any): Sgln195;
getCompany(): number;
setCompany(value: any): Sgln195;
getLocation(): number;
setLocation(value: any): Sgln195;
getExtension(): string;
/**
* All values permitted by GS1 General Specifications (up to 20 alphanumeric characters)
* @param value
*/
setExtension(value: any): Sgln195;
}
import { Epc } from "../epc";
//# sourceMappingURL=sgln195.d.ts.map