import { EventTypes, NotificationCategory } from "@jealous-robot-dev/drophr-common"; export interface UrgentEvent { type: NotificationCategory; actual_at: number; event_id: string; sid: string; } export interface UrgentEventData { name: string; langs: string[]; type: EventTypes; duration: number; pic: string; sid: string; can_join: boolean; starts_at: number; }