Type Alias MarketOrder

MarketOrder: BaseOrder & {
    type: MARKET;
} & ({
    size: string;
} | {
    funds: string;
})