@regulaforensics/document-reader-typings
Version:
Document Reader API typings
20 lines (19 loc) • 365 B
TypeScript
/**
* Enumeration contains a set of constants specifying the type of the RFID-chip
* by the physical parameters of connection between antennas of the chip and the reader
* @enum {number}
*/
export declare enum eRfidType {
/**
* Unknown
*/
UNKNOWN = 0,
/**
* Type «A»
*/
A = 1,
/**
* Type «B»
*/
B = 2
}