UNPKG
@addapptables/ng-web-socket
Version:
latest (2.0.0)
2.0.0
1.0.1
1.0.0
Web socket module for Angular
github.com/addapptables/ng-web-socket
addapptables/ng-web-socket
@addapptables/ng-web-socket
/
lib
/
interfaces
/
socket.interface.d.ts
6 lines
(5 loc)
•
233 B
TypeScript
View Raw
1
2
3
4
5
6
export
interface
ISocket
<T, O =
any
> {
connect
(
url
:
string
,
options
?: O):
Promise
<T>;
bindEvent
(
connection
: T,
event
:
string
,
callFunction
:
(
...
args
:
any
[]
) =>
void
):
any
;
disconnect
(
connection
: T):
Promise
<
void
>; }