UNPKG

zumokit

Version:

ZumoKit is a Wallet as a Service SDK

17 lines (16 loc) 551 B
import { ComposedExchangeJSON } from '../interfaces'; import { Account } from './Account'; import { Quote } from './Quote'; /** Result of the compose exchange method on {@link Wallet Wallet} object. */ export declare class ComposedExchange { /** @internal */ json: ComposedExchangeJSON; /** Debit account. */ debitAccount: Account; /** Credit account. */ creditAccount: Account; /** Exchange rate quote used when composing exchange. */ quote: Quote; /** @internal */ constructor(json: ComposedExchangeJSON); }