[CodeFactor] Apply fixes

This commit is contained in:
codefactor-io
2022-05-12 00:19:44 +00:00
parent e306b7a3a0
commit 1a6b4cc269

View File

@@ -36,12 +36,19 @@ interface SignedRequest<T> {
export default abstract class BaseRestClient {
private timeOffset: number | null;
private syncTimePromise: null | Promise<any>;
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 */