mirror of
https://github.com/kennethnym/aris.git
synced 2026-03-20 09:01:19 +00:00
- Replace if/else chains with switch/case in ical-parser - Move CalendarSourceOptions to calendar-source.ts Co-authored-by: Ona <no-reply@ona.com>
17 lines
471 B
TypeScript
17 lines
471 B
TypeScript
export { CalendarKey, type CalendarContext } from "./calendar-context.ts"
|
|
export { CalendarSource, type CalendarSourceOptions } from "./calendar-source.ts"
|
|
export {
|
|
CalendarEventStatus,
|
|
AttendeeRole,
|
|
AttendeeStatus,
|
|
type CalendarCredentials,
|
|
type CalendarCredentialProvider,
|
|
type CalendarDAVClient,
|
|
type CalendarDAVCalendar,
|
|
type CalendarDAVObject,
|
|
type CalendarAttendee,
|
|
type CalendarAlarm,
|
|
type CalendarEventData,
|
|
type CalendarFeedItem,
|
|
} from "./types.ts"
|