Options accepted by the Quote constructor. Each price field accepts a Price wrapper or a DecimalInput; an omitted field is absent.

interface QuoteInit {
    ask?:
        | string
        | number
        | bigint
        | Price;
    bid?:
        | string
        | number
        | bigint
        | Price;
    mark?:
        | string
        | number
        | bigint
        | Price;
}

Properties

Properties

ask?:
    | string
    | number
    | bigint
    | Price
bid?:
    | string
    | number
    | bigint
    | Price
mark?:
    | string
    | number
    | bigint
    | Price