Skip to content

Instantly share code, notes, and snippets.

@hugoabernier
Last active June 5, 2018 01:19
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/6db7405255d17c2fc9e4d7e77df0350f to your computer and use it in GitHub Desktop.
Save hugoabernier/6db7405255d17c2fc9e4d7e77df0350f to your computer and use it in GitHub Desktop.
React-Calendar-Feed-1
import { ICalendarEvent } from '.';
export interface ICalendarService {
getEvents: () => Promise<ICalendarEvent[]>;
}
export * from './ICalendarEvent';
export * from './ICalendarService';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment