ClearVision/types/helpers/NotificationSendHelper.d.ts
2022-10-06 23:29:01 -04:00

13 lines
567 B
TypeScript

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