update structure

This commit is contained in:
2016-08-07 14:58:20 +02:00
parent 8b419711fc
commit 309284ab68
21 changed files with 286 additions and 9 deletions
@@ -0,0 +1,15 @@
import * as plugins from "./smartsocket.plugins"
/**
* interface for class SmartsocketClient
*/
export interface ISmartsocketClientOptions {
port:number;
url:string;
}
export class SmartsocketClient {
constructor(){
}
}