UNPKG

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

Version:

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

14 lines (12 loc) 286 B
/** * Copyright © 2023 Nevis Security AG. All rights reserved. */ /** * The generic interface representing an operation returned by {@link Operations}. */ export abstract class Operation { /** * Executes the operation asynchronously. */ abstract execute(): Promise<void>; }