From eb1500e517d475aad22cfe02c8a5c5c6acefe00a Mon Sep 17 00:00:00 2001 From: Florian Dold Date: Mon, 19 Feb 2024 18:42:33 +0100 Subject: get rid of deprecated/unused types --- packages/taler-wallet-core/src/wallet.ts | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) (limited to 'packages/taler-wallet-core/src/wallet.ts') diff --git a/packages/taler-wallet-core/src/wallet.ts b/packages/taler-wallet-core/src/wallet.ts index 2ddebd403..8b24fdc11 100644 --- a/packages/taler-wallet-core/src/wallet.ts +++ b/packages/taler-wallet-core/src/wallet.ts @@ -259,7 +259,6 @@ import { getExchangeWithdrawalInfo, getWithdrawalDetailsForUri, } from "./withdraw.js"; -import { PendingOperationsResponse } from "./pending-types.js"; import { TaskScheduler } from "./shepherd.js"; import { assertUnreachable } from "./util/assertUnreachable.js"; import { @@ -607,6 +606,18 @@ async function handlePrepareWithdrawExchange( }; } +/** + * Response returned from the pending operations API. + * + * @deprecated this is a placeholder for the response type of a deprecated wallet-core request. + */ +export interface PendingOperationsResponse { + /** + * List of pending operations. + */ + pendingOperations: any[]; +} + /** * Implementation of the "wallet-core" API. */ -- cgit v1.2.3