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