interface MutableQuote {
    cancel: ((reason?) => void);
    getPromise: (() => ERef<PriceQuote>);
    updateLevel: ((amountIn, amountOut) => void);
}

Properties

cancel: ((reason?) => void)

Type declaration

    • (reason?): void
    • Parameters

      • Optional reason: any

      Returns void

getPromise: (() => ERef<PriceQuote>)

Type declaration

updateLevel: ((amountIn, amountOut) => void)

Type declaration

    • (amountIn, amountOut): void
    • Parameters

      • amountIn: Amount<"nat">
      • amountOut: Amount<"nat">

      Returns void

Generated using TypeDoc