fix(core): update

This commit is contained in:
2019-09-10 00:39:18 +02:00
parent d1b4672eff
commit 7e1c405cb1
4 changed files with 9 additions and 3 deletions

View File

@ -76,8 +76,8 @@ export class ClientUniverse {
await this.checkConnection();
}
public stop() {
this.smartsocketClient.disconnect();
public async stop() {
await this.smartsocketClient.disconnect();
}
/**

View File

@ -0,0 +1,3 @@
import * as plugins from './smartuniverse.plugins';
export class ReactionRequest {}

View File

@ -0,0 +1,3 @@
import * as plugins from './smartuniverse.plugins';
export class ReactionResponse {}