mirror of
https://github.com/meshcore-dev/meshcore.js.git
synced 2026-04-20 22:13:49 +00:00
add websocket to exports
This commit is contained in:
parent
a4ccd3692a
commit
3538ccc690
2 changed files with 3 additions and 1 deletions
|
|
@ -58,7 +58,7 @@
|
|||
|
||||
<!-- actions -->
|
||||
<div class="border bg-gray-50 rounded shadow">
|
||||
<div class="p-3 space-x-1">
|
||||
<div class="p-3 space-x-1 space-y-1">
|
||||
<button @click="getSelfInfo" class="border border-gray-500 px-2 bg-gray-100 hover:bg-gray-200 rounded">
|
||||
AppStart
|
||||
</button>
|
||||
|
|
|
|||
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue