We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb604ce commit 49cf97aCopy full SHA for 49cf97a
deps.ts
@@ -6,5 +6,8 @@ export {
6
isWebSocketPingEvent,
7
isWebSocketPongEvent,
8
connectWebSocket,
9
- WebSocket,
10
} from "https://deno.land/std@0.65.0/ws/mod.ts";
+
11
+export type {
12
+ WebSocket,
13
+} from "https://deno.land/std@0.65.0/ws/mod.ts";
mod.ts
@@ -1,2 +1,2 @@
1
-export { WebSocketServer, WebSocket, WebSocketState } from "./lib/websocket.ts";
2
-export { WebSocketError } from "./lib/errors.ts";
+export type { WebSocketServer, WebSocket, WebSocketState } from "./lib/websocket.ts";
+export type { WebSocketError } from "./lib/errors.ts";
0 commit comments