1 | import { Manager, ManagerOptions } from "./manager.js";
|
2 | import { Socket, SocketOptions } from "./socket.js";
|
3 |
|
4 |
|
5 |
|
6 |
|
7 |
|
8 |
|
9 |
|
10 |
|
11 |
|
12 |
|
13 |
|
14 |
|
15 | declare function lookup(opts?: Partial<ManagerOptions & SocketOptions>): Socket;
|
16 | declare function lookup(uri?: string, opts?: Partial<ManagerOptions & SocketOptions>): Socket;
|
17 |
|
18 |
|
19 |
|
20 |
|
21 |
|
22 | export { protocol } from "socket.io-parser";
|
23 |
|
24 |
|
25 |
|
26 |
|
27 |
|
28 | export { Manager, ManagerOptions, Socket, SocketOptions, lookup as io, lookup as connect, lookup as default, };
|
29 | export { Fetch, NodeXHR, XHR, NodeWebSocket, WebSocket, WebTransport, } from "engine.io-client";
|