Instance of a function monitoring changes to a given transaction.

Can be stopped with monitor.stop().

interface TransactionMonitor {
    transaction: CdvPurchase.Transaction;
    stop(): void;
}

Properties

Methods

Properties

Transaction being monitored.

Methods

  • Stop monitoring the transaction.

    Returns void