datebook
Version:
Generates URLs and ICS file content for adding events to popular calendar apps.
14 lines (13 loc) • 403 B
TypeScript
import ICSAttendeeOptions from './ICSAttendeeOptions';
/**
* Basic Attendee Object
*/
type CalendarAttendee = {
/** The attendee's email address */
email: string;
/** The attendee's name (optional) */
name?: string;
/** Advanced options for use with ics format (optional). See {@link ICSAttendeeOptions}. */
icsOptions?: ICSAttendeeOptions;
};
export default CalendarAttendee;