1// @needsAudit 2export var AuthenticationType; 3(function (AuthenticationType) { 4 /** 5 * Indicates fingerprint support. 6 */ 7 AuthenticationType[AuthenticationType["FINGERPRINT"] = 1] = "FINGERPRINT"; 8 /** 9 * Indicates facial recognition support. 10 */ 11 AuthenticationType[AuthenticationType["FACIAL_RECOGNITION"] = 2] = "FACIAL_RECOGNITION"; 12 /** 13 * Indicates iris recognition support. 14 * @platform android 15 */ 16 AuthenticationType[AuthenticationType["IRIS"] = 3] = "IRIS"; 17})(AuthenticationType || (AuthenticationType = {})); 18// @needsAudit 19export var SecurityLevel; 20(function (SecurityLevel) { 21 /** 22 * Indicates no enrolled authentication. 23 */ 24 SecurityLevel[SecurityLevel["NONE"] = 0] = "NONE"; 25 /** 26 * Indicates non-biometric authentication (e.g. PIN, Pattern). 27 */ 28 SecurityLevel[SecurityLevel["SECRET"] = 1] = "SECRET"; 29 /** 30 * Indicates biometric authentication. 31 */ 32 SecurityLevel[SecurityLevel["BIOMETRIC"] = 2] = "BIOMETRIC"; 33})(SecurityLevel || (SecurityLevel = {})); 34//# sourceMappingURL=LocalAuthentication.types.js.map