UNPKG

n8n-nodes-nextcloud-calendar

Version:

n8n Node für die Integration mit Nextcloud Calendar

14 lines (13 loc) 381 B
import { IExecuteFunctions, ILoadOptionsFunctions } from 'n8n-workflow'; export declare type NextcloudCalendarFunction = IExecuteFunctions | ILoadOptionsFunctions; export interface ICredentials { serverUrl: string; username: string; password: string; } export interface ICodex { type: string; summary: string; description: string; examples: string[]; }