Valens-Progression/types/helpers/NotificationSendHelper.d.ts
2022-12-25 18:45:30 -05:00

13 lines
597 B
TypeScript

import { INotification } from "../models/eft/notifier/INotifier";
import { WebSocketServer } from "../servers/WebSocketServer";
import { NotificationService } from "../services/NotificationService";
export declare class NotificationSendHelper {
protected webSocketServer: WebSocketServer;
protected notificationService: NotificationService;
constructor(webSocketServer: WebSocketServer, notificationService: NotificationService);
/**
* Send notification message to the appropiate channel
*/
sendMessage(sessionID: string, notificationMessage: INotification): void;
}