Skip to content

Commit

Permalink
Adds MQTTServerTransport to TransportNames type
Browse files Browse the repository at this point in the history
  • Loading branch information
edorgeville committed Oct 26, 2020
1 parent e74dff1 commit aa8fde3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/transports/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import HTTPTransport, { HTTPServerTransportOptions } from "./http";
import HTTPSTransport, { HTTPSServerTransportOptions } from "./https";
import IPCTransport, { IPCServerTransportOptions } from "./ipc";

export type TransportNames = "IPCTransport" | "HTTPTransport" | "HTTPSTransport" | "WebSocketTransport";
export type TransportNames = "IPCTransport" | "HTTPTransport" | "HTTPSTransport" | "WebSocketTransport" | "MQTTServerTransport";

export type TransportClasses = WebSocketTransport |
HTTPTransport |
Expand Down

0 comments on commit aa8fde3

Please sign in to comment.