Valens-Progression/types/helpers/NotificationSendHelper.d.ts
2023-02-12 23:21:22 -05:00

13 lines
598 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 appropriate channel
*/
sendMessage(sessionID: string, notificationMessage: INotification): void;
}