@ex-master/zb
Advanced tools
Comparing version 0.2.4 to 0.2.5
@@ -45,3 +45,3 @@ import { Dashboard } from '@ex-master/core'; | ||
constructor({ baseURL, proxies }?: ZBRestAPIOptions); | ||
getMarkets(): Promise<any>; | ||
getMarkets(): Promise<ZBRestAPIGetMarketsResponseData>; | ||
getDepth(params: ZBRestAPIGetDepthParams): Promise<ZBRestAPIGetDepthResponseData>; | ||
@@ -48,0 +48,0 @@ getTrades(params: ZBRestAPIGetTradesParams): Promise<ZBRestAPIGetTradesResponseData>; |
{ | ||
"name": "@ex-master/zb", | ||
"version": "0.2.4", | ||
"version": "0.2.5", | ||
"main": "bld/library/index.js", | ||
@@ -29,3 +29,3 @@ "types": "bld/library/index.d.ts", | ||
}, | ||
"gitHead": "875258993c2aef16beb5b94f5fbada5ac7bc7cd3" | ||
"gitHead": "a1798ead1803f394acc0350c775f5df1e06c50f1" | ||
} |
@@ -115,3 +115,3 @@ import {Agent as HttpAgent} from 'http'; | ||
getMarkets(): Promise<any> { | ||
getMarkets(): Promise<ZBRestAPIGetMarketsResponseData> { | ||
return this.request<ZBRestAPIGetMarketsResponseData>( | ||
@@ -118,0 +118,0 @@ 'GET', |
21557