Skip to content

Instantly share code, notes, and snippets.

@hugoabernier
Created May 30, 2018 03:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hugoabernier/a3c729698331f279c4f37c4474faeb38 to your computer and use it in GitHub Desktop.
Save hugoabernier/a3c729698331f279c4f37c4474faeb38 to your computer and use it in GitHub Desktop.
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