datebook
Version:
Generates URLs and ICS file content for adding events to popular calendar apps.
12 lines (11 loc) • 307 B
TypeScript
/**
* Optional file to attach to the alarm.
* See {@link https://www.kanzaki.com/docs/ical/attach.html} for more info.
*/
type ICSAttachment = {
/** iCalendar file attachment properties. */
params?: string;
/** URL to the file attachment. */
url: string;
};
export default ICSAttachment;