import { HttpClient } from '../HttpClient'; import { ILogger } from '../../model'; import { IJasConfig } from '../../model/Xray/JasConfig/JasConfig'; export declare class XrayJasConfigClient { private readonly httpClient; private readonly logger; private readonly jasConfigurationEndpoint; constructor(httpClient: HttpClient, logger: ILogger); /** * * Sends 'GET /configuration/js requests to Xray and waits for 200 response'. * @returns the jas config * @throws an exception if an unexpected response received from Xray */ getJasConfig(): Promise; }