UNPKG

hypershield

Version:

Middleware suite for high-performance and resilient APIs

8 lines 299 B
import { Alert, AlertDestination } from '../domain/alert'; export interface AlertSender { send(alert: Alert): Promise<void>; } export declare class AlertSenderFactory { static createSender(destination: AlertDestination, config?: any): AlertSender; } //# sourceMappingURL=alertSender.d.ts.map