interface IRequestHandler {
    canHandleAuthentication(response: IHttpClientResponse): boolean;
    handleAuthentication(
        httpClient: IHttpClient,
        requestInfo: IRequestInfo,
        objs: any,
    ): Promise<IHttpClientResponse>;
    prepareRequest(options: RequestOptions): void;
}

Implemented by

Methods