@nevis-security/nevis-mobile-authentication-sdk-react
Version:
React Native plugin for Nevis Mobile Authentication SDK. Supports only mobile.
20 lines (18 loc) • 487 B
text/typescript
/**
* Copyright © 2023 Nevis Security AG. All rights reserved.
*/
/**
* Helps in following the states of started operations during method channel
* calls.
*
* An operation can be stored within {@link PlatformOperationCache}.
*/
export abstract class PlatformOperation {
/**
* The id of the started operation.
*
* The operationId is transported through the method channel calls to follow
* which calls belong to the same operation.
*/
abstract operationId: string;
}