diff options
| author | Florian Dold <florian@dold.me> | 2023-01-16 13:53:24 +0100 |
|---|---|---|
| committer | Florian Dold <florian@dold.me> | 2023-01-16 13:59:16 +0100 |
| commit | e4801dcc31cf32fc81317a821af395f281184537 (patch) | |
| tree | 3eaef6c3141bbf35235b7d397c8806a063f21d4a | |
| parent | bd57fa46a44db8e8c685b40f66eaa7998e71efa5 (diff) | |
util: 'when' field must be optional
| -rw-r--r-- | packages/taler-util/src/wallet-types.ts | 2 |
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; } |
