UNPKG

@nevis-security/nevis-mobile-authentication-sdk-react

Version:

React Native plugin for Nevis Mobile Authentication SDK. Supports only mobile.

16 lines (14 loc) 346 B
/** * Copyright © 2023 Nevis Security AG. All rights reserved. */ /** * The interface that operation or user interaction handlers are derived from. * * @group User Interaction */ export abstract class CancellableHandler { /** * This method should be invoked if the operation must be canceled. */ abstract cancel(): Promise<void>; }