@flashphoner/websdk 2.0.216 → 2.0.219

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -13,10 +13,11 @@
13
13
  * @memberof roomApi
14
14
  * @method connect
15
15
  */
16
+ import Flashphoner = require("./flashphoner-core");
16
17
  declare function appSession(options: {
17
18
  urlServer: string;
18
19
  username: string;
19
- }): any;
20
+ }): Flashphoner.Session;
20
21
  export namespace events {
21
22
  const STATE: string;
22
23
  const JOINED: string;
@@ -25,5 +26,4 @@ export namespace events {
25
26
  const MESSAGE: string;
26
27
  const FAILED: string;
27
28
  }
28
- import Flashphoner = require("@flashphoner/websdk/src/flashphoner-core");
29
29
  export { appSession as connect, Flashphoner as sdk };