UNPKG

n8n-nodes-nextcloud-calendar

Version:

n8n Node für die Integration mit Nextcloud Calendar

18 lines (17 loc) 364 B
export interface ICodex { type: 'action' | 'string'; summary: string; description?: string; examples?: string[]; } declare module 'n8n-workflow' { interface INodeProperties { codex?: ICodex; } interface INodePropertyOptions { codex?: ICodex; } interface INodePropertyCollection { codex?: ICodex; } }