smartsocket/dist/smartsocket.helpers.d.ts

9 lines
397 B
TypeScript
Raw Normal View History

2016-08-07 16:59:39 +00:00
/// <reference types="q" />
import * as plugins from "./smartsocket.plugins";
2016-08-08 16:20:00 +00:00
import { SocketConnection } from "./smartsocket.classes.socketconnection";
2016-08-07 16:59:39 +00:00
/**
* authenticate a socket
*/
2016-08-08 16:20:00 +00:00
export declare let authenticateSocket: (socketConnectionArg: SocketConnection) => plugins.q.Promise<{}>;
export declare let listenToReadySocket: (socketConnectionArg: SocketConnection) => plugins.q.Promise<{}>;