@nevis-security/nevis-mobile-authentication-sdk-react
Version:
React Native plugin for Nevis Mobile Authentication SDK. Supports only mobile.
37 lines (33 loc) • 1.15 kB
JavaScript
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.DeviceInformationCheckPlatformOperation = void 0;
var _PlatformOperation = require("./PlatformOperation");
/**
* Copyright © 2024 Nevis Security AG. All rights reserved.
*/
/**
* Helps in following the states of device information check during method channel calls.
*/
class DeviceInformationCheckPlatformOperation extends _PlatformOperation.PlatformOperation {
/**
* The callback that will be invoked by the SDK with the {@link DeviceInformationCheckResult}
* containing the configuration mismatches an errors (if any) that occurred.
*/
constructor(operationId, onResult) {
super();
this.operationId = operationId;
this.onResult = onResult;
}
/**
* Provides a way to handle the result of the device information check method channel call.
*
* @param result the result of the method channel call.
*/
handleResult(result) {
this.onResult?.(result);
}
}
exports.DeviceInformationCheckPlatformOperation = DeviceInformationCheckPlatformOperation;
//# sourceMappingURL=DeviceInformationCheckPlatformOperation.js.map
;