fix(core): update

This commit is contained in:
2019-09-10 10:55:10 +02:00
parent f401d78c4b
commit be7ca29e4b
7 changed files with 16 additions and 22 deletions
+3 -3
View File
@@ -7,7 +7,7 @@ export interface ISocketRequest_SubscribeChannel {
passphrase: string;
};
response: {
subscriptionStatus: 'subscribed' | 'unsubscribed'
subscriptionStatus: 'subscribed' | 'unsubscribed';
};
}
@@ -15,6 +15,6 @@ export interface ISocketRequest_ProcessMessage {
method: 'processMessage';
request: interfaces.IUniverseMessage;
response: {
messageStatus: 'ok' | 'channel not found'
messageStatus: 'ok' | 'channel not found';
};
}
}