UNPKG

seerbit-nodejs

Version:
15 lines (14 loc) 509 B
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;