WIP Accesses

This commit is contained in:
Paul Schneider 2024-03-04 01:02:19 +00:00
commit ce8f3ebce0
869 changed files with 217487 additions and 2851 deletions

View file

@ -0,0 +1,11 @@
import { HttpClient, HttpRequest, HttpResponse } from "./HttpClient";
import { ILogger } from "./ILogger";
/** Default implementation of {@link @microsoft/signalr.HttpClient}. */
export declare class DefaultHttpClient extends HttpClient {
private readonly _httpClient;
/** Creates a new instance of the {@link @microsoft/signalr.DefaultHttpClient}, using the provided {@link @microsoft/signalr.ILogger} to log messages. */
constructor(logger: ILogger);
/** @inheritDoc */
send(request: HttpRequest): Promise<HttpResponse>;
getCookieString(url: string): string;
}