n8n-nodes-cronlytic
Version:
n8n community node for Cronlytic advanced cron scheduling
15 lines (14 loc) • 590 B
TypeScript
import { INodeType, INodeTypeDescription, IWebhookFunctions, IWebhookResponseData, IHookFunctions } from 'n8n-workflow';
export declare class CronlyticTrigger implements INodeType {
description: INodeTypeDescription;
private warmLambda;
private cronlyticRequest;
webhookMethods: {
default: {
checkExists(this: IHookFunctions): Promise<boolean>;
create(this: IHookFunctions): Promise<boolean>;
delete(this: IHookFunctions): Promise<boolean>;
};
};
webhook(this: IWebhookFunctions): Promise<IWebhookResponseData>;
}