@ombori/epc-ean
Version:
EPC Tag Data Standard encoding and decoding library, written in javascript
32 lines (31 loc) • 985 B
TypeScript
export class Sscc96 extends Epc {
clone(): Sscc96;
getType(): string;
fromTagURI(uri: any): Sscc96;
toTagURI(): string;
toIdURI(): string;
toBarcode(): string;
getTotalBits(): number;
getHeader(): number;
getPartition(): number;
setPartition(value: any): Sscc96;
getSscc(): string;
setSscc(gtin: any): Sscc96;
getCompanyPrefix(): number;
setCompanyPrefix(value: any): Sscc96;
getSerialReference(): number;
setSerialReference(value: any): Sscc96;
getMaxSerialReference(): number;
}
export namespace Sscc96 {
const EPC_HEADER: number;
const TOTAL_BITS: number;
const PARTITION_OFFSET: number;
const PARTITION_END: number;
const TAG_URI: string;
function TAG_URI_TEMPLATE(filter: any, company: any, serial: any): string;
function PID_URI_TEMPLATE(company: any, serial: any): string;
const PARTITIONS: Partition[];
}
import { Epc } from '../epc';
import { Partition } from '../partition';