@nevis-security/nevis-mobile-authentication-sdk-react
Version:
React Native plugin for Nevis Mobile Authentication SDK. Supports only mobile.
14 lines (12 loc) • 316 B
text/typescript
/**
* Copyright © 2023 Nevis Security AG. All rights reserved.
*/
/**
* The interface that operation or user interaction handlers are derived from.
*/
export abstract class CancellableHandler {
/**
* This method should be invoked if the operation must be canceled.
*/
abstract cancel(): Promise<void>;
}