run linter

This commit is contained in:
tiagosiebler
2022-05-12 01:23:49 +01:00
parent 1a6b4cc269
commit f0088f32c2
5 changed files with 21 additions and 22 deletions

View File

@@ -1,5 +1,4 @@
import axios, { AxiosRequestConfig, AxiosResponse, Method } from 'axios';
import { APIResponse, APIResponseWithTime } from '../types/shared';
import { signMessage } from './node-support';
import {
@@ -36,19 +35,12 @@ 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 */