Skip to content

Commit

Permalink
fix indentation and missing semicolons
Browse files Browse the repository at this point in the history
  • Loading branch information
handijk committed Aug 23, 2018
1 parent d932316 commit 1b55a05
Showing 1 changed file with 18 additions and 18 deletions.
36 changes: 18 additions & 18 deletions ccxt.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -140,21 +140,21 @@ declare module 'ccxt' {
}

export interface Transaction {
info: {};
id: string;
txid: string;
timestamp: number;
datetime: string;
address: string;
type: "deposit" | "withdraw";
amount: number;
currency: string;
status: "pending" | "ok";
updated: number;
fee: {
cost: number;
rate: number;
};
info: {};
id: string;
txid: string;
timestamp: number;
datetime: string;
address: string;
type: "deposit" | "withdraw";
amount: number;
currency: string;
status: "pending" | "ok";
updated: number;
fee: {
cost: number;
rate: number;
};
}

export interface Tickers {
Expand Down Expand Up @@ -296,9 +296,9 @@ declare module 'ccxt' {
fetchOrders (symbol?: string, since?: number, limit?: number, params?: {}): Promise<Order[]>;
fetchOpenOrders (symbol?: string, since?: number, limit?: number, params?: {}): Promise<Order[]>;
fetchCurrencies (params?: any): Promise<any>;
fetchTransactions (currency?: string, since?: number, limit?: number, params?: = {}): Promise<Transaction[]>
fetchDeposits (currency?: string, since?: number, limit?: number, params?: = {}): Promise<Transaction[]>
fetchWithdraws (currency?: string, since?: number, limit?: number, params?: = {}): Promise<Transaction[]>
fetchTransactions (currency?: string, since?: number, limit?: number, params?: = {}): Promise<Transaction[]>;
fetchDeposits (currency?: string, since?: number, limit?: number, params?: = {}): Promise<Transaction[]>;
fetchWithdraws (currency?: string, since?: number, limit?: number, params?: = {}): Promise<Transaction[]>;
cancelOrder (id: string, symbol?: string, params?: {}): Promise<any>;
createDepositAddress (currency: string, params?: {}): Promise<any>;
fetchDepositAddress (currency: string, params?: {}): Promise<any>;
Expand Down

0 comments on commit 1b55a05

Please sign in to comment.