Closed gupadhyaya closed 4 years ago
Account.getBalance returns Promise<object> which makes typescript raise error Property 'balance' does not exist on type 'object', hence changing it to Balance interface.
Promise<object>
Property 'balance' does not exist on type 'object'
Balance
@denniswon could you bump the version and release?
Account.getBalance returns
Promise<object>
which makes typescript raise errorProperty 'balance' does not exist on type 'object'
, hence changing it toBalance
interface.