mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
see: https://github.com/sockjs/sockjs-client example copied from their README: ``` var sock = new SockJS('http://mydomain.com/my_prefix'); sock.onopen = function() { console.log('open'); }; sock.onmessage = function(e) { console.log('message', e.data); }; sock.onclose = function() { console.log('close'); }; sock.send('test'); sock.close(); ``` |
||
|---|---|---|
| .. | ||
| sockjs.d.ts | ||