index.js 887 B

12345678910111213141516
  1. // Copyright (c) .NET Foundation. All rights reserved.
  2. // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
  3. // Version token that will be replaced by the prepack command
  4. /** The version of the SignalR client. */
  5. export var VERSION = "1.1.4";
  6. export { AbortError, HttpError, TimeoutError } from "./Errors";
  7. export { HttpClient, HttpResponse } from "./HttpClient";
  8. export { DefaultHttpClient } from "./DefaultHttpClient";
  9. export { HubConnection, HubConnectionState } from "./HubConnection";
  10. export { HubConnectionBuilder } from "./HubConnectionBuilder";
  11. export { MessageType } from "./IHubProtocol";
  12. export { LogLevel } from "./ILogger";
  13. export { HttpTransportType, TransferFormat } from "./ITransport";
  14. export { NullLogger } from "./Loggers";
  15. export { JsonHubProtocol } from "./JsonHubProtocol";
  16. //# sourceMappingURL=index.js.map