import { NotificationV1 } from '../data/version1/NotificationV1'; export interface IPushNotificationsController { send(correlationId: string, notification: NotificationV1): Promise; sendMany(correlationId: string, notifications: NotificationV1[]): Promise; broadcast(correlationId: string, notification: NotificationV1): Promise; broadcastMany(correlationId: string, notifications: NotificationV1[]): Promise; }