@mildshield14/ical-booker
Version:
A lightweight, modern CalDAV client for Node.js - discover calendars, check availability, and create bookings
9 lines • 429 B
TypeScript
export interface CalDAVCreds {
principal: string;
username: string;
password: string;
}
export declare function basicAuth({ username, password }: CalDAVCreds): string;
export declare function propfind(url: string, body: string, creds: CalDAVCreds, depth?: '0' | '1'): Promise<string>;
export declare function report(url: string, body: string, creds: CalDAVCreds): Promise<string>;
//# sourceMappingURL=caldav.d.ts.map