diff options
author | Florian Dold <florian@dold.me> | 2022-11-01 12:20:50 +0100 |
---|---|---|
committer | Florian Dold <florian@dold.me> | 2022-11-01 12:20:50 +0100 |
commit | b513665408ad1490c1f4c3e8831f264cc489de34 (patch) | |
tree | 06bd30146f6c207c4286842662c0eb5b34375a53 /packages | |
parent | 3c50b1233e9e44da6bc66115f331a5884b041d69 (diff) |
taler-util: remove legacy member
Diffstat (limited to 'packages')
-rw-r--r-- | packages/taler-util/src/wallet-types.ts | 8 |
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 { |