Interface INotificationFunc

interface INotificationFunc {
    notify(
        message: string,
        level?: EventLogLevel,
        data?: JSONObject,
    ): Promise<void>;
    sendMail(params: Mail): Promise<boolean>;
    sendSMS(msg: string): Promise<boolean>;
}

Methods