summaryrefslogtreecommitdiff
path: root/packages/taler-util/src/notifications.ts
diff options
context:
space:
mode:
authorFlorian Dold <florian@dold.me>2023-02-09 22:44:36 +0100
committerFlorian Dold <florian@dold.me>2023-02-10 00:07:33 +0100
commit3cf2d4cba919203065f210f80f3f081948ad257a (patch)
treeb5f6e80f800cffbb59c0c7cf0b54398eb89f4b95 /packages/taler-util/src/notifications.ts
parenta8c5a9696c1735a178158cbc9ac4f9bb4b6f013d (diff)
downloadwallet-core-3cf2d4cba919203065f210f80f3f081948ad257a.tar.gz
wallet-core-3cf2d4cba919203065f210f80f3f081948ad257a.tar.bz2
wallet-core-3cf2d4cba919203065f210f80f3f081948ad257a.zip
wallet-core: expose withdrawal progress, towards huge withdrawal test
Diffstat (limited to 'packages/taler-util/src/notifications.ts')
-rw-r--r--packages/taler-util/src/notifications.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/packages/taler-util/src/notifications.ts b/packages/taler-util/src/notifications.ts
index c50cc72de..bc1c4b71f 100644
--- a/packages/taler-util/src/notifications.ts
+++ b/packages/taler-util/src/notifications.ts
@@ -83,6 +83,8 @@ export interface ReserveNotYetFoundNotification {
export interface CoinWithdrawnNotification {
type: NotificationType.CoinWithdrawn;
+ numWithdrawn: number;
+ numTotal: number;
}
export interface RefundStartedNotification {