Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

trustlines.d.ts 450B

1234567891011
  1. import { RippleAPI } from '..';
  2. import { FormattedTrustline } from '../common/types/objects/trustlines';
  3. export declare type GetTrustlinesOptions = {
  4. counterparty?: string;
  5. currency?: string;
  6. limit?: number;
  7. ledgerVersion?: number;
  8. };
  9. declare function getTrustlines(this: RippleAPI, address: string, options?: GetTrustlinesOptions): Promise<FormattedTrustline[]>;
  10. export default getTrustlines;
  11. //# sourceMappingURL=trustlines.d.ts.map