igniteui-react-core
Version:
Ignite UI React Core.
30 lines (29 loc) • 1.3 kB
JavaScript
/*
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
https://www.infragistics.com/legal/license/igultimate-la
https://www.infragistics.com/legal/license/igultimate-eula
GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
*/
import { markEnum } from "./type";
/**
* An enumeration for the different pending states a transaction can be in.
*/
export var TransactionPendingState = /*@__PURE__*/ (function (TransactionPendingState) {
/**
* The transaction will stay pending.
*/
TransactionPendingState[TransactionPendingState["Pending"] = 0] = "Pending";
/**
* The transaction is to be accepted.
*/
TransactionPendingState[TransactionPendingState["Accept"] = 1] = "Accept";
/**
* The transaction is to be rejected.
*/
TransactionPendingState[TransactionPendingState["Reject"] = 2] = "Reject";
return TransactionPendingState;
})({});
/**
* @hidden
*/
export let TransactionPendingState_$type = /*@__PURE__*/ markEnum('TransactionPendingState', 'Pending,0|Accept,1|Reject,2');