UNPKG

@mbc-cqrs-serverless/core

Version:
8 lines (7 loc) 322 B
import { INotification } from '../../interfaces'; export declare const NOTIFICATION_TRANSPORT = "NOTIFICATION_TRANSPORT"; export interface INotificationTransport { name?: string; sendMessage(notification: INotification): Promise<void>; } export type NotificationTransportMap = Map<string, INotificationTransport>;