export type MarketOrBase = 'market' | 'base'; export type BidsOrAsks = 'bids' | 'asks'; export type OrderType = 'market' | 'limit'; export type BuyOrSell = 'buy' | 'sell';