@elastic.io/component-commons-library
Version:
Library for most common component development cases
14 lines (13 loc) • 499 B
TypeScript
import { PlatformApiLogicClient } from '../platformApi/PlatformApiLogicClient';
export declare class FacelessRestClient {
emitter: any;
cfg: any;
request: any;
private readonly axiosInst;
private accessToken;
logger: any;
platformClient: PlatformApiLogicClient;
constructor(emitter: any, cfg: any, userAgent?: string, msgId?: string);
protected addAuthenticationToRequestOptions(requestOptions: any): Promise<void>;
makeRequest(options: any): Promise<any>;
}