smartsocket/dist/smartsocket.classes.smartsocketclient.d.ts

15 lines
505 B
TypeScript
Raw Normal View History

2016-08-09 09:42:21 +00:00
/// <reference types="q" />
import * as plugins from "./smartsocket.plugins";
import { ISocketFunctionRequestObject, ISocketFunctionResponseObject } from "./smartsocket.classes.socketfunction";
2016-08-07 16:59:39 +00:00
/**
* interface for class SmartsocketClient
*/
export interface ISmartsocketClientOptions {
port: number;
url: string;
}
export declare class SmartsocketClient {
constructor();
2016-08-09 09:42:21 +00:00
dispatchFunctionRequest(dataArg: ISocketFunctionRequestObject): plugins.q.Promise<ISocketFunctionResponseObject>;
2016-08-07 16:59:39 +00:00
}