11 lines
430 B
TypeScript
11 lines
430 B
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.
|
|
|
|
import { IHttpConnectionOptions } from "./IHttpConnectionOptions"
|
|
import { IHubProtocol } from "./IHubProtocol"
|
|
import { ILogger, LogLevel } from "./ILogger"
|
|
|
|
export interface IHubConnectionOptions extends IHttpConnectionOptions {
|
|
protocol?: IHubProtocol;
|
|
}
|