From 19ab1e9e4e1373d4ef4dad5381c8ae24167f5d89 Mon Sep 17 00:00:00 2001 From: Avi Vahl Date: Mon, 9 Nov 2020 10:00:07 +0200 Subject: [PATCH] fix(typings): export Socket and SocketOptions types (#1394) These were exposed by @types/socket.io-client. --- lib/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/index.ts b/lib/index.ts index 69cde969a..42f0e5bb5 100644 --- a/lib/index.ts +++ b/lib/index.ts @@ -93,4 +93,4 @@ exports.connect = lookup; */ export { Manager } from "./manager"; -export { lookup as io }; +export { lookup as io, Socket, SocketOptions };