UNPKG

n8n-nodes-nextcloud-calendar

Version:

n8n Node für die Integration mit Nextcloud Calendar

14 lines (13 loc) 626 B
import { IExecuteFunctions, ILoadOptionsFunctions, INodeExecutionData, INodePropertyOptions, INodeType, INodeTypeDescription, INodeListSearchResult } from 'n8n-workflow'; export declare class NextcloudCalendar implements INodeType { description: INodeTypeDescription; methods: { loadOptions: { getCalendars(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>; }; listSearch: { getCalendars(this: ILoadOptionsFunctions, filter?: string): Promise<INodeListSearchResult>; }; }; execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>; }