aboutsummaryrefslogtreecommitdiff
path: root/packages/taler-util/src/taler-types.ts
diff options
context:
space:
mode:
authorSebastian <sebasjm@gmail.com>2023-10-14 01:40:50 -0300
committerSebastian <sebasjm@gmail.com>2023-10-14 01:40:50 -0300
commit53998741a6f280c5c56573c2db6ffd35ce5c34d9 (patch)
tree5425164817dc59c5a6de24cac2d04196522e5a89 /packages/taler-util/src/taler-types.ts
parent592ecda944bf5b32e86f6c42ee8e1f17d9c86451 (diff)
downloadwallet-core-53998741a6f280c5c56573c2db6ffd35ce5c34d9.tar.xz
breaking api: currency spec as the doc mention
Diffstat (limited to 'packages/taler-util/src/taler-types.ts')
-rw-r--r--packages/taler-util/src/taler-types.ts8
1 files changed, 1 insertions, 7 deletions
diff --git a/packages/taler-util/src/taler-types.ts b/packages/taler-util/src/taler-types.ts
index d8fdc2519..767adb799 100644
--- a/packages/taler-util/src/taler-types.ts
+++ b/packages/taler-util/src/taler-types.ts
@@ -951,7 +951,7 @@ export interface AccountInfo {
/**
* @deprecated
*/
-export interface ExchangeWireJson {}
+export interface ExchangeWireJson { }
/**
* Proposal returned from the contract URL.
@@ -1310,12 +1310,6 @@ export const codecForDenominationPubKey = () =>
.alternative(DenomKeyType.ClauseSchnorr, codecForCsDenominationPubKey())
.build("DenominationPubKey");
-export const codecForBankWithdrawalOperationPostResponse =
- (): Codec<BankWithdrawalOperationPostResponse> =>
- buildCodecForObject<BankWithdrawalOperationPostResponse>()
- .property("transfer_done", codecForBoolean())
- .build("BankWithdrawalOperationPostResponse");
-
export type AmountString = string;
export type Base32String = string;
export type EddsaSignatureString = string;