Add server WebSocket transport

This commit is contained in:
nav
2026-04-08 21:05:03 +00:00
parent c5287fa474
commit b44a4cae66
2 changed files with 237 additions and 0 deletions

View File

@@ -57,4 +57,15 @@ export function createYonexusServerPlugin(): YonexusServerPluginRuntime {
}
export default createYonexusServerPlugin;
export {
createServerTransport,
YonexusServerTransport,
type ServerTransport,
type ServerTransportOptions,
type ClientConnection,
type MessageHandler,
type ConnectionHandler,
type DisconnectionHandler
} from "./core/transport.js";
export { manifest };