Notification.ts 131 Bytes
Newer Older
yogevbd's avatar
yogevbd committed
1 2 3 4 5 6 7 8
export interface Notification {
  data: any;
  alert: string
  sound: string;
  badge: number;
  type: string;
  thread: string;
}