17 lines
1.1 KiB
TypeScript
17 lines
1.1 KiB
TypeScript
// Copyright (c) .NET Foundation. All rights reserved.
|
|
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
|
|
|
|
// Everything that users need to access must be exported here. Including interfaces.
|
|
export { AbortSignal } from "./AbortController";
|
|
export { HttpError, TimeoutError } from "./Errors";
|
|
export { DefaultHttpClient, HttpClient, HttpRequest, HttpResponse } from "./HttpClient";
|
|
export { IHttpConnectionOptions } from "./IHttpConnectionOptions";
|
|
export { HubConnection } from "./HubConnection";
|
|
export { HubConnectionBuilder } from "./HubConnectionBuilder";
|
|
export { MessageType, MessageHeaders, HubMessage, HubMessageBase, HubInvocationMessage, InvocationMessage, StreamInvocationMessage, StreamItemMessage, CompletionMessage, PingMessage, CloseMessage, CancelInvocationMessage, IHubProtocol } from "./IHubProtocol";
|
|
export { ILogger, LogLevel } from "./ILogger";
|
|
export { HttpTransportType, TransferFormat, ITransport } from "./ITransport";
|
|
export { IStreamSubscriber, IStreamResult, ISubscription } from "./Stream";
|
|
export { NullLogger } from "./Loggers";
|
|
export { JsonHubProtocol } from "./JsonHubProtocol";
|