UNPKG

n8n-nodes-nextcloud-calendar

Version:

n8n Node für die Integration mit Nextcloud Calendar

7 lines (6 loc) 362 B
import { DAVCalendarObject, DAVResponse } from 'tsdav'; import { IEventResponse } from '../interfaces/event'; type CalendarObjectType = DAVCalendarObject | DAVResponse; export declare function parseEventResults(events: CalendarObjectType[]): IEventResponse[]; export declare function parseICalEvent(calendarObject: DAVCalendarObject): IEventResponse; export {};