Files
boc/landvex/node_modules/openai/internal/ws-adapter.mjs
T

8 lines
189 B
JavaScript
Raw Normal View History

/** Standard WebSocket readyState values (RFC 6455). */
export const ReadyState = {
CONNECTING: 0,
OPEN: 1,
CLOSING: 2,
CLOSED: 3,
};
//# sourceMappingURL=ws-adapter.mjs.map