feat: update typings for ScheduleItem

BREAKING CHANGE: This updates the `startDate` and `endDate` to be
potentially `undefined`
This commit is contained in:
Rickard Natt och Dag 2021-04-01 11:41:09 +02:00
parent 5107607271
commit 9c87535c5b
1 changed files with 2 additions and 2 deletions

View File

@ -148,8 +148,8 @@ export interface ScheduleItem {
title: string
description?: string
location?: string
startDate: string
endDate: string
startDate?: string
endDate?: string
oneDayEvent: boolean
allDayEvent: boolean
}