UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

23 lines (22 loc) 482 B
import { Type } from "./type"; /** * An enumeration for the different pending states a transaction can be in. */ export declare enum TransactionPendingState { /** * The transaction will stay pending. */ Pending = 0, /** * The transaction is to be accepted. */ Accept = 1, /** * The transaction is to be rejected. */ Reject = 2 } /** * @hidden */ export declare let TransactionPendingState_$type: Type;