You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

balances.d.ts 422B

1234567891011
  1. import { GetTrustlinesOptions } from './trustlines';
  2. import { RippleAPI } from '..';
  3. export declare type Balance = {
  4. value: string;
  5. currency: string;
  6. counterparty?: string;
  7. };
  8. export declare type GetBalances = Array<Balance>;
  9. declare function getBalances(this: RippleAPI, address: string, options?: GetTrustlinesOptions): Promise<GetBalances>;
  10. export default getBalances;
  11. //# sourceMappingURL=balances.d.ts.map