From ac85779f3b67ffc2953c17d0824be62b1f0acc86 Mon Sep 17 00:00:00 2001 From: Tim Schiewe Date: Mon, 30 Apr 2018 19:18:46 +0200 Subject: Implement interface/config based infrastructure Fixes #2 --- src/core/IEvent.ts | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 src/core/IEvent.ts (limited to 'src/core/IEvent.ts') diff --git a/src/core/IEvent.ts b/src/core/IEvent.ts new file mode 100644 index 0000000..6ce817d --- /dev/null +++ b/src/core/IEvent.ts @@ -0,0 +1,7 @@ +export interface IEvent { + summary: string; + description: string; + location: string; + start: Date; + end: Date; +} -- cgit v1.3.1