UNPKG

@ombori/epc-ean

Version:

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

31 lines (30 loc) 949 B
export class Giai202 extends Epc { clone(): Giai202; getType(): any; toTagURI(): string; toIdURI(): string; toBarcode(): string; getTotalBits(): number; getHeader(): number; getPartition(): number; setPartition(value: any): Giai202; getGiai(): string; setGiai(giai: any): Giai202; getCompanyPrefix(): number; setCompanyPrefix(value: any): Giai202; getAssetReference(): number; setAssetReference(value: any): Giai202; fromTagURI(uri: any): Giai202; } export namespace Giai202 { 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';