NotificationEvents.ts 193 Bytes
Newer Older
yogevbd's avatar
yogevbd committed
1 2 3 4 5 6 7 8 9
import { Notification } from './Notification';

export interface NotificationRegisteredEvent {
  deviceToken: string;
}

export interface NotificationReceived {
  notification: Notification;
}