2018-03-15 02:29:40 +01:00
|
|
|
import { Smartsocket } from './smartsocket.classes.smartsocket';
|
|
|
|
import { SocketFunction } from './smartsocket.classes.socketfunction';
|
|
|
|
import { ISocketConnectionAuthenticationObject } from './smartsocket.classes.socketconnection';
|
|
|
|
import { SocketRequest, TSocketRequestSide } from './smartsocket.classes.socketrequest';
|
|
|
|
import { SocketRole } from './smartsocket.classes.socketrole';
|
2016-09-05 00:34:09 +02:00
|
|
|
export declare let checkPasswordForRole: (dataArg: ISocketConnectionAuthenticationObject, referenceSmartsocket: Smartsocket) => boolean;
|
2016-08-12 05:56:40 +02:00
|
|
|
export declare let getSocketFunctionByName: (functionNameArg: string) => SocketFunction;
|
|
|
|
/**
|
|
|
|
* get corresponding Socketrequest instance by shortId
|
|
|
|
*/
|
2016-08-14 03:25:26 +02:00
|
|
|
export declare let getSocketRequestById: (shortIdArg: string, requestSide?: TSocketRequestSide) => SocketRequest;
|
2016-08-12 05:56:40 +02:00
|
|
|
/**
|
|
|
|
* get corresponding SocketRole instance by name
|
|
|
|
*/
|
2016-09-05 00:34:09 +02:00
|
|
|
export declare let getSocketRoleByName: (socketRoleNameArg: string, referenceSmartsocket: Smartsocket) => SocketRole;
|