@nevis-security/nevis-mobile-authentication-sdk-react
Version:
React Native plugin for Nevis Mobile Authentication SDK. Supports only mobile.
32 lines (28 loc) • 879 B
JavaScript
/**
* Copyright © 2024 Nevis Security AG. All rights reserved.
*/
import { PlatformOperation } from './PlatformOperation';
/**
* Helps in following the states of device information sync during method channel calls.
*/
export class DeviceInformationSyncPlatformOperation extends PlatformOperation {
/**
* The callback that will be invoked by the SDK with the {@link DeviceInformationSyncResult}
* when the operation completes.
*/
constructor(operationId, onResult) {
super();
this.operationId = operationId;
this.onResult = onResult;
}
/**
* Provides a way to handle the result of the device information sync method channel call.
*
* @param result the result of the method channel call.
*/
handleResult(result) {
this.onResult?.(result);
}
}
//# sourceMappingURL=DeviceInformationSyncPlatformOperation.js.map
;