aboutsummaryrefslogtreecommitdiff
path: root/src/types/pending.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/types/pending.ts')
-rw-r--r--src/types/pending.ts6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/types/pending.ts b/src/types/pending.ts
index b86c7797b..5d732c520 100644
--- a/src/types/pending.ts
+++ b/src/types/pending.ts
@@ -58,6 +58,7 @@ export type PendingOperationInfo = PendingOperationInfoCommon &
| PendingTipChoiceOperation
| PendingTipPickupOperation
| PendingWithdrawOperation
+ | PendingRecoupOperation
);
/**
@@ -200,6 +201,11 @@ export interface PendingRefundApplyOperation {
numRefundsDone: number;
}
+export interface PendingRecoupOperation {
+ type: PendingOperationType.Recoup;
+ recoupGroupId: string;
+}
+
/**
* Status of an ongoing withdrawal operation.
*/