-
-
Save hugoabernier/6db7405255d17c2fc9e4d7e77df0350f to your computer and use it in GitHub Desktop.
React-Calendar-Feed-1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { ICalendarEvent } from '.'; | |
export interface ICalendarService { | |
getEvents: () => Promise<ICalendarEvent[]>; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export * from './ICalendarEvent'; | |
export * from './ICalendarService'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment