@mildshield14/ical-booker
Version:
A lightweight, modern CalDAV client for Node.js - discover calendars, check availability, and create bookings
9 lines • 315 B
TypeScript
import type { CalDAVCreds, NewEventInput } from './types.js';
export declare function createBooking(creds: CalDAVCreds & {
calendarURL: string;
}, // calendarURL = “…/UUID/”
{ start, end, title, attendee }: NewEventInput): Promise<{
uid: string;
url: string;
}>;
//# sourceMappingURL=book.d.ts.map