diff options
author | Sebastian <sebasjm@gmail.com> | 2023-09-25 09:31:17 -0300 |
---|---|---|
committer | Sebastian <sebasjm@gmail.com> | 2023-09-25 14:50:45 -0300 |
commit | 0b2c03dc5e1060cd229aeafb84263f171b5a9788 (patch) | |
tree | d95fc53b31cb8188be8f4697b1a8d01495b3a41b /packages/demobank-ui/src/declaration.d.ts | |
parent | fd9ed97fdc60baaa3f74a3f7b02c6831c6d6948b (diff) |
new libeufin api
Diffstat (limited to 'packages/demobank-ui/src/declaration.d.ts')
-rw-r--r-- | packages/demobank-ui/src/declaration.d.ts | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/packages/demobank-ui/src/declaration.d.ts b/packages/demobank-ui/src/declaration.d.ts index a9573fbcd..0c083a939 100644 --- a/packages/demobank-ui/src/declaration.d.ts +++ b/packages/demobank-ui/src/declaration.d.ts @@ -319,11 +319,10 @@ namespace SandboxBackend { interface ListBankAccountsResponse { accounts: AccountMinimalData[]; } - // interface Balance { - // amount: Amount; - // credit_debit_indicator: "credit" | "debit"; - // } - type Balance = Amount + interface Balance { + amount: Amount; + credit_debit_indicator: "credit" | "debit"; + } interface AccountMinimalData { // Username username: string; |