@ombori/epc-ean
Version:
EPC Tag Data Standard encoding and decoding library, written in javascript
38 lines (37 loc) • 1.25 kB
TypeScript
export class Grai96 extends Epc {
clone(): Grai96;
getType(): string;
fromTagURI(uri: any): Grai96;
toTagURI(): string;
toIdURI(): string;
toBarcode(): string;
getTotalBits(): number;
getHeader(): number;
getPartition(): number;
setPartition(value: any): Grai96;
getGrai(): string;
setGrai(grai: any): Grai96;
getCompanyPrefix(): number;
setCompanyPrefix(value: any): Grai96;
getAssetType(): number;
setAssetType(value: any): Grai96;
getSerial(): number;
setSerial(value: any): Grai96;
}
export namespace Grai96 {
export const EPC_HEADER: number;
export const TOTAL_BITS: number;
export const PARTITION_OFFSET: number;
export const PARTITION_END: number;
export const SERIAL_OFFSET: number;
import SERIAL_END = TOTAL_BITS;
export { SERIAL_END };
export const SERIAL_BITS: number;
export const MAX_SERIAL: number;
export const TAG_URI: string;
export function TAG_URI_TEMPLATE(filter: any, company: any, asset: any, serial: any): string;
export function PID_URI_TEMPLATE(company: any, asset: any, serial: any): string;
export const PARTITIONS: Partition[];
}
import { Epc } from '../epc';
import { Partition } from '../partition';