chore(): lint fix

This commit is contained in:
JJ-Cro
2025-01-06 12:34:52 +01:00
parent 2def783f47
commit 900cca43d4

View File

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