n8n-nodes-nextcloud-calendar
Version:
n8n Node für die Integration mit Nextcloud Calendar
14 lines (13 loc) • 381 B
TypeScript
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[];
}