mirror of
https://github.com/kennethnym/aris.git
synced 2026-03-20 09:01:19 +00:00
Replace hardcoded "caldav-event" string with a CalDavFeedItemType const object, matching the pattern used by google-calendar and weatherkit packages. Co-authored-by: Ona <no-reply@ona.com>
17 lines
466 B
TypeScript
17 lines
466 B
TypeScript
export { CalDavCalendarKey, type CalendarContext } from "./calendar-context.ts"
|
|
export { CalDavSource, type CalDavSourceOptions } from "./caldav-source.ts"
|
|
export { parseICalEvents } from "./ical-parser.ts"
|
|
export {
|
|
AttendeeRole,
|
|
AttendeeStatus,
|
|
CalDavEventStatus,
|
|
CalDavFeedItemType,
|
|
type CalDavAlarm,
|
|
type CalDavAttendee,
|
|
type CalDavDAVCalendar,
|
|
type CalDavDAVClient,
|
|
type CalDavDAVObject,
|
|
type CalDavEventData,
|
|
type CalDavFeedItem,
|
|
} from "./types.ts"
|