UNPKG

n8n-nodes-toggl

Version:

n8n community node for Toggl Track time tracking integration with comprehensive operations including client management and webhook support

9 lines (8 loc) 441 B
import { IWebhookFunctions, INodeType, INodeTypeDescription, IWebhookResponseData } from 'n8n-workflow'; export declare class TogglWebhookTrigger implements INodeType { description: INodeTypeDescription; webhookActivate(this: IWebhookFunctions): Promise<void>; webhookDeactivate(this: IWebhookFunctions): Promise<void>; webhook(this: IWebhookFunctions): Promise<IWebhookResponseData>; private static compareSignatures; }