-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmod.ts
More file actions
17 lines (16 loc) · 696 Bytes
/
Copy pathmod.ts
File metadata and controls
17 lines (16 loc) · 696 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/**
* _**Deko**_ is a simple WebSocket client for Deno. It also supports custom headers
* (but this will not work in browsers).
*
* If you want to connect WebSocket on browsers, consider to use {@linkcode WebSocket} instead.
*
* Reference: {@link https://datatracker.ietf.org/doc/html/rfc6455 | RFC 6455}.
*/
export * from "./src/client.ts";
export * from "./src/errors.ts";
export * from "./src/events.ts";
export * from "./src/mask.ts";
export { createSecKey, getAcceptKey } from "./src/handshake.ts";
export { CloseCode, type CloseOptions } from "./src/close.ts";
export { type Frame, isCtrl, isNonCtrl, OpCode } from "./src/frame.ts";
export { type Message } from "./src/message.ts";