Change triggered by the Add Transaction update action.

interface AddTransactionChange {
    change: string;
    nextValue: Transaction;
    type: "AddTransactionChange";
}

Properties

Properties

change: string
nextValue: Transaction

Value after the change.

type: "AddTransactionChange"