@resolveio/server-lib 1.0.0-rc5 → 1.0.0-rc7

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.
Files changed (2) hide show
  1. package/index.d.ts +2 -1
  2. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -1,3 +1,4 @@
1
+ import { ResolveIOMainServer } from './server-app';
1
2
  export default class ResolveIOServer {
2
3
  private static _serverConfig;
3
4
  private static _mainDB;
@@ -6,7 +7,7 @@ export default class ResolveIOServer {
6
7
  private static _client;
7
8
  constructor(serverConfig: any, client: string);
8
9
  static getClientName(): string;
9
- static getMainServer(): any;
10
+ static getMainServer(): ResolveIOMainServer;
10
11
  static getMainDB(): any;
11
12
  static getSupportDB(): any;
12
13
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@resolveio/server-lib",
3
- "version": "1.0.0-rc5",
3
+ "version": "1.0.0-rc7",
4
4
  "description": "",
5
5
  "main": "index.ts",
6
6
  "scripts": {