Valens-Progression/types/helpers/NotificationSendHelper.d.ts

13 lines
598 B
TypeScript
Raw Permalink Normal View History

import { INotification } from "../models/eft/notifier/INotifier";
2022-12-25 18:45:30 -05:00
import { WebSocketServer } from "../servers/WebSocketServer";
import { NotificationService } from "../services/NotificationService";
export declare class NotificationSendHelper {
2022-12-25 18:45:30 -05:00
protected webSocketServer: WebSocketServer;
protected notificationService: NotificationService;
2022-12-25 18:45:30 -05:00
constructor(webSocketServer: WebSocketServer, notificationService: NotificationService);
/**
2023-02-12 23:21:22 -05:00
* Send notification message to the appropriate channel
*/
sendMessage(sessionID: string, notificationMessage: INotification): void;
}