UNPKG

n8n-nodes-hebrew-calendar

Version:

n8n community node for Hebrew Calendar operations - check if dates are Shabbat, holidays, or Chol Hamoed

11 lines (10 loc) 383 B
import { INodeType, INodeTypeDescription, IExecuteFunctions, INodeExecutionData } from 'n8n-workflow'; declare module 'n8n-workflow' { interface INodeTypeDescription { usableAsTool?: boolean; } } export declare class HebrewCalendar implements INodeType { description: INodeTypeDescription; execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>; }