smartsocket/ts/smartsocket.classes.smartsocketclient.ts

15 lines
240 B
TypeScript
Raw Normal View History

2016-08-07 12:58:20 +00:00
import * as plugins from "./smartsocket.plugins"
/**
* interface for class SmartsocketClient
*/
export interface ISmartsocketClientOptions {
port:number;
url:string;
}
export class SmartsocketClient {
constructor(){
}
}