cal.pub0.org/packages/app-store/applecalendar/lib/CalendarService.ts

9 lines
313 B
TypeScript

import CalendarService from "@calcom/lib/CalendarService";
import { CredentialPayload } from "@calcom/types/Credential";
export default class AppleCalendarService extends CalendarService {
constructor(credential: CredentialPayload) {
super(credential, "apple_calendar", "https://caldav.icloud.com");
}
}