taler-typescript-core

Wallet core logic and WebUIs for various components
Log | Files | Refs | Submodules | README | LICENSE

commit e4801dcc31cf32fc81317a821af395f281184537
parent bd57fa46a44db8e8c685b40f66eaa7998e71efa5
Author: Florian Dold <florian@dold.me>
Date:   Mon, 16 Jan 2023 13:53:24 +0100

util: 'when' field must be optional

Diffstat:
Mpackages/taler-util/src/wallet-types.ts | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 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; }