Added getLatestInformation depreciated endpoint

This commit is contained in:
CryptoCompiler
2021-01-29 14:20:17 +00:00
committed by GitHub
parent 05c5e1d213
commit 0ce6c97a1f

View File

@@ -43,7 +43,16 @@ export class InverseClient extends SharedEndpoints {
}): GenericAPIResponse { }): GenericAPIResponse {
return this.requestWrapper.get('v2/public/kline/list', params); return this.requestWrapper.get('v2/public/kline/list', params);
} }
/**
* @deprecated use getTickers() instead
*/
getLatestInformation(params?: {
symbol?: string;
}): GenericAPIResponse {
return this.getTickers(params);
}
/** /**
* @deprecated use getTrades() instead * @deprecated use getTrades() instead
*/ */