Interface ITransactionStatus

interface ITransactionStatus {
    isExecuted(): boolean;
    isFailed(): boolean;
    isInvalid(): boolean;
    isPending(): boolean;
    isSuccessful(): boolean;
    valueOf(): string;
}

Methods