Calendar-Feed-1
export interface ICalendarEvent { | |
title: string; | |
start: Date; | |
end: Date; | |
url: string|undefined; | |
allDay: boolean; | |
category: string|undefined; | |
description: string|undefined; | |
location: string|undefined; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment