mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-23 09:21:13 +00:00
* refactor(gateway): simplify canonical websocket client * refactor(gateway): keep protocol options internal
12 lines
642 B
TypeScript
12 lines
642 B
TypeScript
// Browser-safe gateway client surface. Keep Node transport/TLS dependencies out
|
|
// of this entry so browser consumers share the wire engine without polyfills.
|
|
export * from "./device-auth.js";
|
|
export * from "./connect-auth.js";
|
|
export * from "./protocol-client.js";
|
|
export * from "./reconnect-policy.js";
|
|
export * from "@openclaw/gateway-protocol/client-info";
|
|
export * from "@openclaw/gateway-protocol/connect-error-details";
|
|
export * from "@openclaw/gateway-protocol/startup-unavailable";
|
|
export * from "@openclaw/gateway-protocol/version";
|
|
export type { ConnectParams, ErrorShape, EventFrame, HelloOk } from "@openclaw/gateway-protocol";
|