chore(): lint fix
This commit is contained in:
@@ -1001,15 +1001,14 @@ export class RestClientV5 extends BaseRestClient {
|
|||||||
*
|
*
|
||||||
* @param coinName Coin name, uppercase only
|
* @param coinName Coin name, uppercase only
|
||||||
*/
|
*/
|
||||||
getTransferableAmount(params: {
|
getTransferableAmount(params: { coinName: string }): Promise<
|
||||||
coinName: string;
|
APIResponseV3WithTime<{
|
||||||
}): Promise<APIResponseV3WithTime<{
|
|
||||||
availableWithdrawal: string;
|
availableWithdrawal: string;
|
||||||
}>> {
|
}>
|
||||||
|
> {
|
||||||
return this.getPrivate('/v5/account/withdrawal', params);
|
return this.getPrivate('/v5/account/withdrawal', params);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
/**
|
/**
|
||||||
* Upgrade to unified account.
|
* Upgrade to unified account.
|
||||||
*
|
*
|
||||||
@@ -1811,18 +1810,15 @@ export class RestClientV5 extends BaseRestClient {
|
|||||||
* - Use master UID only
|
* - Use master UID only
|
||||||
* - The api key can only have "Affiliate" permission
|
* - The api key can only have "Affiliate" permission
|
||||||
*/
|
*/
|
||||||
getAffiliateUserList(params?: {
|
getAffiliateUserList(params?: { size?: number; cursor?: string }): Promise<
|
||||||
size?: number;
|
APIResponseV3WithTime<{
|
||||||
cursor?: string;
|
|
||||||
}): Promise<APIResponseV3WithTime<{
|
|
||||||
list: AffiliateUserListItemV5[];
|
list: AffiliateUserListItemV5[];
|
||||||
nextPageCursor: string;
|
nextPageCursor: string;
|
||||||
}>> {
|
}>
|
||||||
|
> {
|
||||||
return this.getPrivate('/v5/affiliate/aff-user-list', params);
|
return this.getPrivate('/v5/affiliate/aff-user-list', params);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get Affiliate User Info.
|
* Get Affiliate User Info.
|
||||||
*
|
*
|
||||||
|
|||||||
Reference in New Issue
Block a user