Skip to content
This repository has been archived by the owner on Jan 20, 2020. It is now read-only.

Commit

Permalink
Allow explicit nulls for MarketOrders
Browse files Browse the repository at this point in the history
In case that's enforced
  • Loading branch information
fb55 committed Nov 9, 2017
1 parent 32360ad commit dd716d3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ declare module 'gdax' {
*/
interface MarketOrder extends BaseOrder {
type: 'market';
size: string;
funds: string;
size: string | null;
funds: string | null;
}

interface StopOrder extends BaseOrder {
Expand Down

0 comments on commit dd716d3

Please sign in to comment.