The Node.js® Website
1export interface ZonedCalendarTime {
2 dateTime: string;
3 timeZone: string;
4}
5
6export interface SimpleCalendarTime {
7 date: string;
8}
9
10export interface CalendarEvent {
11 id: string;
12 summary: string;
13 location?: string;
14 creator: string;
15 start: ZonedCalendarTime | SimpleCalendarTime;
16 end: ZonedCalendarTime | SimpleCalendarTime;
17 htmlLink: string;
18 description?: string;
19}