aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Dold <florian@dold.me>2023-01-16 13:53:24 +0100
committerFlorian Dold <florian@dold.me>2023-01-16 13:59:16 +0100
commite4801dcc31cf32fc81317a821af395f281184537 (patch)
tree3eaef6c3141bbf35235b7d397c8806a063f21d4a
parentbd57fa46a44db8e8c685b40f66eaa7998e71efa5 (diff)
downloadwallet-core-e4801dcc31cf32fc81317a821af395f281184537.tar.xz
util: 'when' field must be optional
-rw-r--r--packages/taler-util/src/wallet-types.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/taler-util/src/wallet-types.ts b/packages/taler-util/src/wallet-types.ts
index af775a54e..fc383acb0 100644
--- a/packages/taler-util/src/wallet-types.ts
+++ b/packages/taler-util/src/wallet-types.ts
@@ -597,7 +597,7 @@ export interface WalletDiagnostics {
export interface TalerErrorDetail {
code: TalerErrorCode;
- when: AbsoluteTime;
+ when?: AbsoluteTime;
hint?: string;
[x: string]: unknown;
}