seerbit-nodejs
Version:
SeerBit NodsJS SDK
15 lines (14 loc) • 509 B
TypeScript
import Config from "./config";
import ClientInterface from "./httpClient/clientInterface";
declare class Client {
static ENDPOINT_PILOT: string;
static ENDPOINT_LIVE: string;
private _httpClient;
config: Config;
constructor(config: Config);
setEnvironment(environment: Environment): void;
get httpClient(): ClientInterface;
set httpClient(httpClient: ClientInterface);
setTimeouts(connectionTimeoutMillis: number, readTimeoutMillis: number): void;
}
export default Client;