From 0ee63af66b7ef2b66f2f13e240226bd177b82fbe Mon Sep 17 00:00:00 2001 From: huzaif Date: Wed, 3 Feb 2021 10:51:59 +0530 Subject: [PATCH] TS Client fix --- types/rest/client.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/rest/client.d.ts b/types/rest/client.d.ts index a49d75a..ced5bb3 100644 --- a/types/rest/client.d.ts +++ b/types/rest/client.d.ts @@ -7,7 +7,7 @@ export function validateSignature(uri: string, nonce: string, signature: string, * You can also pass in additional parameters accepted by the node requests module. */ export class Client { - constructor(authId: string, authToken: string, options?: string); + constructor(authId?: string, authToken?: string, options?: string); calls: CallInterface; accounts: AccountInterface; subaccounts: SubaccountInterface;