@regulaforensics/document-reader
Version:
This is an npm module for Regula Document Reader SDK. It allows you to read various kinds of identification documents using your phone's camera.
24 lines (20 loc) • 637 B
TypeScript
/**
* Class contains properties to get the information about the license.
*/
export declare class License {
/**
* Allows you to get an expiration date of your license.
*/
readonly expiryDate?: string;
/**
* Allows you to get a list of country identifiers which are defined for
* processing in the license. If the array is empty, there are no
* restrictions for processing.
*/
readonly countryFilter?: string[];
/**
* Allows you to verify that RFID chip reading capabilities are added to your license.
*/
readonly isRfidAvailable: boolean;
private constructor();
}