aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Dold <florian@dold.me>2022-11-01 12:20:50 +0100
committerFlorian Dold <florian@dold.me>2022-11-01 12:20:50 +0100
commitb513665408ad1490c1f4c3e8831f264cc489de34 (patch)
tree06bd30146f6c207c4286842662c0eb5b34375a53
parent3c50b1233e9e44da6bc66115f331a5884b041d69 (diff)
downloadwallet-core-b513665408ad1490c1f4c3e8831f264cc489de34.tar.xz
taler-util: remove legacy member
-rw-r--r--packages/taler-util/src/wallet-types.ts8
1 files changed, 1 insertions, 7 deletions
diff --git a/packages/taler-util/src/wallet-types.ts b/packages/taler-util/src/wallet-types.ts
index fc69fd9cb..f6bc13d65 100644
--- a/packages/taler-util/src/wallet-types.ts
+++ b/packages/taler-util/src/wallet-types.ts
@@ -352,7 +352,7 @@ export const codecForConfirmReserveRequest = (): Codec<ConfirmReserveRequest> =>
/**
* Wire coins to the user's own bank account.
*/
-export class ReturnCoinsRequest {
+export interface ReturnCoinsRequest {
/**
* The amount to wire.
*/
@@ -368,12 +368,6 @@ export class ReturnCoinsRequest {
* receive the funds.
*/
senderWire?: string;
-
- /**
- * Verify that a value matches the schema of this class and convert it into a
- * member.
- */
- static checked: (obj: any) => ReturnCoinsRequest;
}
export interface PrepareRefundResult {