Skip to content

Commit

Permalink
feat: update typings for ScheduleItem
Browse files Browse the repository at this point in the history
BREAKING CHANGE: This updates the `startDate` and `endDate` to be
potentially `undefined`
  • Loading branch information
believer committed Apr 1, 2021
1 parent 5107607 commit 9c87535
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down

0 comments on commit 9c87535

Please sign in to comment.