topsyde-utils 1.0.80 → 1.0.81

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.
@@ -12,10 +12,10 @@ export interface I_WebsocketConstructor {
12
12
  export default class Websocket extends Singleton {
13
13
  protected _channels: WebsocketChannel;
14
14
  protected _clients: Map<string, I_WebsocketClient>;
15
- private _server;
16
- private _channelClass;
17
- private _clientClass;
18
- private _ws_interface?;
15
+ protected _server: Server;
16
+ protected _channelClass: typeof Channel;
17
+ protected _clientClass: typeof Client;
18
+ protected _ws_interface?: I_WebsocketInterface;
19
19
  protected constructor(options?: I_WebsocketConstructor);
20
20
  private set server(value);
21
21
  get server(): Server;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "topsyde-utils",
3
- "version": "1.0.80",
3
+ "version": "1.0.81",
4
4
  "description": "A bundle of TypeScript utility classes and functions",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",