@ombori/epc-ean
Version:
EPC Tag Data Standard encoding and decoding library, written in javascript
39 lines (38 loc) • 1.25 kB
TypeScript
export class Gid96 extends Epc {
getFilter(): void;
setFilter(): void;
clone(): Gid96;
getType(): string;
fromTagURI(uri: any): Gid96;
toTagURI(): string;
toIdURI(): string;
getTotalBits(): number;
getHeader(): number;
getManager(): number;
setManager(value: any): Gid96;
getClass(): number;
setClass(value: any): Gid96;
getSerial(): number;
setSerial(value: any): Gid96;
}
export namespace Gid96 {
export const EPC_HEADER: number;
export const TOTAL_BITS: number;
export const MANAGER_OFFSET: number;
export const MANAGER_END: number;
export const MANAGER_BITS: number;
export const MAX_MANAGER: number;
export const CLASS_OFFSET: number;
export const CLASS_END: number;
export const CLASS_BITS: number;
export const MAX_CLASS: 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(manager: any, clazz: any, serial: any): string;
export function PID_URI_TEMPLATE(manager: any, clazz: any, serial: any): string;
}
import { Epc } from '../epc';