smartsocket/ts/smartsocket.classes.smartsocketclient.ts
2016-08-07 14:58:20 +02:00

15 lines
240 B
TypeScript

import * as plugins from "./smartsocket.plugins"
/**
* interface for class SmartsocketClient
*/
export interface ISmartsocketClientOptions {
port:number;
url:string;
}
export class SmartsocketClient {
constructor(){
}
}