From 5d2f1d306a04586db989cd9a625ca00f2e9fb32f Mon Sep 17 00:00:00 2001 From: Mihajlo Date: Mon, 9 May 2022 16:08:49 +0200 Subject: [PATCH] style: lint --- src/SASjsApiClient.ts | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/src/SASjsApiClient.ts b/src/SASjsApiClient.ts index b1cc454..51ced0f 100644 --- a/src/SASjsApiClient.ts +++ b/src/SASjsApiClient.ts @@ -100,9 +100,7 @@ export class SASjsApiClient { * @param clientId - the client ID to authenticate with. * @param authCode - the auth code received from the server. */ - public async getAccessToken( - authCode: string - ): Promise { + public async getAccessToken(authCode: string): Promise { return getAccessTokenForSasjs(this.requestClient, authCode) } @@ -120,10 +118,7 @@ export class SASjsApiClient { * @param password - a string representing the password. * @param clientId - the client ID to authenticate with. */ - public async getAuthCode( - username: string, - password: string, - ) { + public async getAuthCode(username: string, password: string) { return getAuthCodeForSasjs(this.requestClient, username, password) } }