From 1a6b4cc269f9c07d23c99a665f1ab08f4e725beb Mon Sep 17 00:00:00 2001 From: codefactor-io Date: Thu, 12 May 2022 00:19:44 +0000 Subject: [PATCH] [CodeFactor] Apply fixes --- src/util/BaseRestClient.ts | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/util/BaseRestClient.ts b/src/util/BaseRestClient.ts index 790c297..cfef8d9 100644 --- a/src/util/BaseRestClient.ts +++ b/src/util/BaseRestClient.ts @@ -36,12 +36,19 @@ interface SignedRequest { export default abstract class BaseRestClient { private timeOffset: number | null; + private syncTimePromise: null | Promise; + private options: RestClientOptions; + private baseUrl: string; + private globalRequestOptions: AxiosRequestConfig; + private key: string | undefined; + private secret: string | undefined; + private clientType: RestClientType; /** Function that calls exchange API to query & resolve server time, used by time sync */