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

13 lines
581 B
TypeScript

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