This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// types from augustsblack's PR on janode repo: https://github.com/meetecho/janode/pull/5 | |
declare module 'janode' { | |
/** | |
* Class representing a connection through WebSocket transport.<br> | |
* | |
* In case of failure a connection will be retried according to the configuration (time interval and | |
* times to attempt). At every attempt, if multiple addresses are available for Janus, the next address | |
* will be tried. An error will be raised only if the maxmimum number of attempts have been reached.<br> | |
* |