feat(message): refactor

This commit is contained in:
2018-05-07 18:50:07 +02:00
parent 547c159dc4
commit 01765fa50f
4 changed files with 66 additions and 18 deletions
+8 -5
View File
@@ -10,6 +10,14 @@ export class UniverseChannel {
* stores the channels that are available within the universe
*/
public static channelStore = new Objectmap();
/**
* the credentials for the channel
*/
private credentials: {
user: string;
password: string;
};
/**
* creates new channels
@@ -18,11 +26,6 @@ export class UniverseChannel {
*/
public static createChannel = (channelArg: string, secretArg: string) => {
}
credentials: {
user: string;
password: string;
};
/**