From 3538ccc69067145c7bdee9789d17c52aa05c9ed1 Mon Sep 17 00:00:00 2001 From: andrewheadricke Date: Thu, 30 Oct 2025 10:48:01 +1100 Subject: [PATCH] add websocket to exports --- index.html | 2 +- src/index.js | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/index.html b/index.html index f94ec06..a2195ab 100644 --- a/index.html +++ b/index.html @@ -58,7 +58,7 @@
-
+
diff --git a/src/index.js b/src/index.js index af95004..ff42c31 100644 --- a/src/index.js +++ b/src/index.js @@ -4,6 +4,7 @@ import SerialConnection from "./connection/serial_connection.js"; import NodeJSSerialConnection from "./connection/nodejs_serial_connection.js"; import WebSerialConnection from "./connection/web_serial_connection.js"; import TCPConnection from "./connection/tcp_connection.js"; +import WebSocketConnection from "./connection/websocket_connection.js"; import Constants from "./constants.js"; import Advert from "./advert.js"; import Packet from "./packet.js"; @@ -17,6 +18,7 @@ export { NodeJSSerialConnection, WebSerialConnection, TCPConnection, + WebSocketConnection, Constants, Advert, Packet,