-
Notifications
You must be signed in to change notification settings - Fork 161
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
13ac5cd
commit bc984bc
Showing
72 changed files
with
1,982 additions
and
1,921 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1374,7 +1374,7 @@ <h1><a href="index.html">All files</a> attendee.ts</h1> | |
| ||
| ||
/** | ||
* Usually you get an `ICalAttendee` object like this: | ||
* Usually you get an {@link ICalAttendee} object like this: | ||
* | ||
* ```javascript | ||
* import ical from 'ical-generator'; | ||
|
@@ -1383,7 +1383,7 @@ <h1><a href="index.html">All files</a> attendee.ts</h1> | |
* const attendee = event.createAttendee({ email: '[email protected]' }); | ||
* ``` | ||
* | ||
* You can also use the [[`ICalAttendee`]] object directly: | ||
* You can also use the {@link ICalAttendee} object directly: | ||
* | ||
* ```javascript | ||
* import ical, {ICalAttendee} from 'ical-generator'; | ||
|
@@ -1396,11 +1396,11 @@ <h1><a href="index.html">All files</a> attendee.ts</h1> | |
private readonly event: ICalEvent; | ||
| ||
/** | ||
* Constructor of [[`ICalAttendee`]]. The event reference is | ||
* Constructor of {@link ICalAttendee}. The event reference is | ||
* required to query the calendar's timezone when required. | ||
* | ||
* @param data Attendee Data | ||
* @param calendar Reference to ICalEvent object | ||
* @param event Reference to ICalEvent object | ||
*/ | ||
constructor(data: ICalAttendeeData, event: ICalEvent) { | ||
this.data = { | ||
|
@@ -1531,7 +1531,7 @@ <h1><a href="index.html">All files</a> attendee.ts</h1> | |
| ||
/** | ||
* Set the attendee's role, defaults to `REQ` / `REQ-PARTICIPANT`. | ||
* Checkout [[`ICalAttendeeRole`]] for available roles. | ||
* Checkout {@link ICalAttendeeRole} for available roles. | ||
* | ||
* @since 0.2.0 | ||
*/ | ||
|
@@ -1578,7 +1578,7 @@ <h1><a href="index.html">All files</a> attendee.ts</h1> | |
status(): ICalAttendeeStatus | null; | ||
| ||
/** | ||
* Set the attendee's status. See [[`ICalAttendeeStatus`]] | ||
* Set the attendee's status. See {@link ICalAttendeeStatus} | ||
* for available status options. | ||
* | ||
* @since 0.2.0 | ||
|
@@ -1606,7 +1606,7 @@ <h1><a href="index.html">All files</a> attendee.ts</h1> | |
| ||
/** | ||
* Set attendee's type (a.k.a. CUTYPE). | ||
* See [[`ICalAttendeeType`]] for available status options. | ||
* See {@link ICalAttendeeType} for available status options. | ||
* | ||
* @since 0.2.3 | ||
*/ | ||
|
@@ -1635,7 +1635,7 @@ <h1><a href="index.html">All files</a> attendee.ts</h1> | |
* Set the attendee's delegated-to field. | ||
* | ||
* Creates a new Attendee if the passed object is not already a | ||
* [[`ICalAttendee`]] object. Will set the `delegatedTo` and | ||
* {@link ICalAttendee} object. Will set the `delegatedTo` and | ||
* `delegatedFrom` attributes. | ||
* | ||
* Will also set the `status` to `DELEGATED`, if attribute is set. | ||
|
@@ -1691,7 +1691,7 @@ <h1><a href="index.html">All files</a> attendee.ts</h1> | |
* Set the attendee's delegated-from field | ||
* | ||
* Creates a new Attendee if the passed object is not already a | ||
* [[`ICalAttendee`]] object. Will set the `delegatedTo` and | ||
* {@link ICalAttendee} object. Will set the `delegatedTo` and | ||
* `delegatedFrom` attributes. | ||
* | ||
* @param delegatedFrom | ||
|
@@ -1725,7 +1725,7 @@ <h1><a href="index.html">All files</a> attendee.ts</h1> | |
/** | ||
* Create a new attendee this attendee delegates to and returns | ||
* this new attendee. Creates a new attendee if the passed object | ||
* is not already an [[`ICalAttendee`]]. | ||
* is not already an {@link ICalAttendee}. | ||
* | ||
* ```javascript | ||
* const cal = ical(); | ||
|
@@ -1748,7 +1748,7 @@ <h1><a href="index.html">All files</a> attendee.ts</h1> | |
/** | ||
* Create a new attendee this attendee delegates from and returns | ||
* this new attendee. Creates a new attendee if the passed object | ||
* is not already an [[`ICalAttendee`]]. | ||
* is not already an {@link ICalAttendee}. | ||
* | ||
* ```javascript | ||
* const cal = ical(); | ||
|
@@ -1921,7 +1921,7 @@ <h1><a href="index.html">All files</a> attendee.ts</h1> | |
<div class='footer quiet pad2 space-top1 center small'> | ||
Code coverage generated by | ||
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a> | ||
at 2024-02-13T09:07:26.539Z | ||
at 2024-02-16T18:34:31.922Z | ||
</div> | ||
<script src="prettify.js"></script> | ||
<script> | ||
|
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
Oops, something went wrong.