UNPKG

@ombori/epc-ean

Version:

EPC Tag Data Standard encoding and decoding library, written in javascript

31 lines (30 loc) 944 B
export class Giai96 extends Epc { clone(): Giai96; getType(): string; fromTagURI(uri: any): Giai96; toTagURI(): string; toIdURI(): string; toBarcode(): string; getTotalBits(): number; getHeader(): number; getPartition(): number; setPartition(value: any): Giai96; getGiai(): string; setGiai(giai: any): Giai96; getCompanyPrefix(): number; setCompanyPrefix(value: any): Giai96; getAssetReference(): number; setAssetReference(value: any): Giai96; } export namespace Giai96 { 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, asset: any): string; function PID_URI_TEMPLATE(company: any, asset: any): string; const PARTITIONS: Partition[]; } import { Epc } from '../epc'; import { Partition } from '../partition';