From 9d4c4a75a498e6766a06bffb02c0e5253b8d4efd Mon Sep 17 00:00:00 2001 From: Damien Arrachequesne Date: Thu, 22 Feb 2024 08:01:30 +0100 Subject: [PATCH] refactor(cluster): export ClusterAdapterOptions and MessageType types Related: - https://github.com/socketio/socket.io-redis-streams-adapter/blob/89d00a49e4aadf1bfe32ddc644d0ef877a08238d/lib/adapter.ts#L17 - https://github.com/socketio/socket.io-redis-streams-adapter/blob/89d00a49e4aadf1bfe32ddc644d0ef877a08238d/lib/adapter.ts#L191 --- lib/index.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/index.ts b/lib/index.ts index 7743723..acb4248 100644 --- a/lib/index.ts +++ b/lib/index.ts @@ -509,8 +509,10 @@ function shouldIncludePacket( export { ClusterAdapter, ClusterAdapterWithHeartbeat, + ClusterAdapterOptions, ClusterMessage, ClusterResponse, + MessageType, ServerId, Offset, } from "./cluster-adapter";