Skip to content

Commit 98741e1

Browse files
refactor(sio-client): export DisconnectDescription type (#5392)
Related: #4556
1 parent 8af7019 commit 98741e1

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

packages/socket.io-client/lib/index.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { url } from "./url.js";
22
import { Manager, ManagerOptions } from "./manager.js";
3-
import { Socket, SocketOptions } from "./socket.js";
3+
import { DisconnectDescription, Socket, SocketOptions } from "./socket.js";
44
import debugModule from "debug"; // debug()
55

66
const debug = debugModule("socket.io-client"); // debug()
@@ -91,6 +91,7 @@ export { protocol } from "socket.io-parser";
9191
*/
9292

9393
export {
94+
DisconnectDescription,
9495
Manager,
9596
ManagerOptions,
9697
Socket,

0 commit comments

Comments
 (0)