UNPKG

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

Version:

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

21 lines (17 loc) 463 B
/** * Copyright © 2023 Nevis Security AG. All rights reserved. */ import { ChannelMessage } from '../ChannelMessage'; /** * Common ancestor for operation based messages. */ export abstract class OperationMessage extends ChannelMessage { /** * Flag that tells whether the success callback is provided. */ abstract onSuccessProvided: boolean; /** * Flag that tells whether the error callback is provided. */ abstract onErrorProvided: boolean; }