-
Notifications
You must be signed in to change notification settings - Fork 86
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs(ics): properly documents alarms and durations #178
- Loading branch information
Showing
9 changed files
with
50 additions
and
24 deletions.
There are no files selected for viewing
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
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
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
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,17 @@ | ||
/** | ||
* advanced attendee options for use with the ics format | ||
* Advanced attendee options for use with the ICS format. | ||
*/ | ||
|
||
// TODO comments on props | ||
// TODO: Consult @jshor about modifications to this hierarchy to accommodate OWA | ||
type ICSAttendeeOptions = { | ||
partStat?: string | ||
role?: string | ||
rsvp?: boolean | ||
delegatedFrom?: string | ||
sentBy?: string | ||
/** The participation status (RFC-2445 value) of the attendee. */ | ||
partStat?: string | ||
/** The participation role (RFC-2445 value) of the attendee. */ | ||
role?: string | ||
/** Whether or not the attendee is RSVP'd to the event. */ | ||
rsvp?: boolean | ||
/** The delegatee of the attendee request. See {@link https://www.kanzaki.com/docs/ical/delegatedFrom.html} for more info. */ | ||
delegatedFrom?: string | ||
/** The event sender. See {@link https://www.kanzaki.com/docs/ical/sentBy.html} for more info. */ | ||
sentBy?: string | ||
} | ||
|
||
export default ICSAttendeeOptions | ||
export default ICSAttendeeOptions |
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