UNPKG
ngx-socket-io
Version:
latest (4.8.5)
4.8.5
4.8.4
4.8.3
4.8.2
4.8.1
4.8.0
4.7.0
4.6.1
4.6.0
4.5.1
4.5.0
4.4.0
4.3.1
4.3.0
4.2.0
4.1.0
4.0.0
3.4.0
3.3.1
3.3.0
3.2.0
3.0.1
2.1.1
2.1.0
2.0.0
1.1.1
1.1.0
1.0.8
1.0.7
1.0.6
1.0.5
1.0.4
1.0.3
1.0.1
1.0.0
0.0.0
Socket.IO module for Angular
github.com/rodgc/ngx-socket-io
rodgc/ngx-socket-io
ngx-socket-io
/
src
/
config
/
socket-io.config.d.ts
12 lines
(11 loc)
•
270 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
import
type
{ ManagerOptions } from
'socket.io-client'
;
/** Config interface */
export
interface
SocketIoConfig { url:
string
;
/** * Options * References: * https://socket.io/docs/v4/client-options */
options?: Partial<ManagerOptions>; }