move to typescript predominance

This commit is contained in:
2018-04-13 15:45:48 +02:00
parent 2165a8f677
commit 95c5fb7e83
30 changed files with 81 additions and 375 deletions
@@ -0,0 +1,17 @@
import * as plugins from './smartuniverse.plugins';
/**
* enables a set of apps to talk within their own limited borders.
*/
export class UniverseChannel {
topic: string;
credentials: {
user: string;
password: string;
};
/**
* authenticates a client on the server side
*/
async authenticateClient() {}
}