15 lines
240 B
TypeScript
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(){
|
||
|
|
||
|
}
|
||
|
}
|