UNPKG

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

Version:

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

13 lines 383 B
/** * Copyright © 2023 Nevis Security AG. All rights reserved. */ /** * The interface that operation or user interaction handlers are derived from. */ export declare abstract class CancellableHandler { /** * This method should be invoked if the operation must be canceled. */ abstract cancel(): Promise<void>; } //# sourceMappingURL=CancellableHandler.d.ts.map