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.

getOrderbook.d.ts 510B

1234567891011121314
  1. import type { Client } from '../client';
  2. import { LedgerIndex } from '../models/common';
  3. import { BookOffer, TakerAmount } from '../models/methods/bookOffers';
  4. declare function getOrderbook(this: Client, takerPays: TakerAmount, takerGets: TakerAmount, options?: {
  5. limit?: number;
  6. ledger_index?: LedgerIndex;
  7. ledger_hash?: string | null;
  8. taker?: string | null;
  9. }): Promise<{
  10. buy: BookOffer[];
  11. sell: BookOffer[];
  12. }>;
  13. export default getOrderbook;
  14. //# sourceMappingURL=getOrderbook.d.ts.map