import * as SocketIO from 'socket.io'; /** * socket handling and clarification is under development */ export declare class DyNTS_SocketPresence { /** * this is the presence ID which is used to get and handle the presence * usually the service master identifier such as userID * (issuerLocalId != issuer which is the main master identifier usually the accountID) * */ issuerLocalId: string; serviceName?: string; onDestroy?: (issuerId: string) => void; defaultErrorUserMsg?: string; sockets?: SocketIO.Socket[]; issuer: string; constructor(set: Partial); /** * Emits event on all sockets * @param event * @param content */ emitEvent(event: string, content: any, issuer: string): void; private _getDefaultErrorSettings; } //# sourceMappingURL=socket-presence.control-model.d.ts.map