UNPKG

event-app-api

Version:

Package for easy access to Event App API

12 lines (11 loc) 296 B
export type Priority = "low" | "medium" | "high"; export type EventType = "meeting" | "session" | "blocked" | ""; export type CalendarEvent = { id: string; priority: Priority; type: EventType; start_date: string; end_date: string; event: string; reference: string; };