fix(core): update

This commit is contained in:
2019-04-11 18:50:43 +02:00
parent 8830b825ac
commit 1a7634e8db
6 changed files with 42 additions and 16 deletions

View File

@ -1 +1,7 @@
export interface IUniverseMessage {}
export interface IUniverseMessage {
messageText: string;
targetChannelName: string;
passphrase: string;
payload?: string | number | any;
payloadStringType?: 'Buffer' | 'string' | 'object';
}