UNPKG

n8n-nodes-livo

Version:

n8n Livo App integration with triggers and actions for orders, products, customers, and repairs

25 lines (24 loc) 719 B
import { INodeType, INodeTypeDescription, IWebhookFunctions, IWebhookResponseData } from 'n8n-workflow'; export declare class OrderNode implements INodeType { description: INodeTypeDescription; webhook(this: IWebhookFunctions): Promise<IWebhookResponseData>; } export declare class OrderNodeCredentials { name: string; displayName: string; properties: ({ displayName: string; name: string; type: "string"; typeOptions: { password: boolean; }; default: string; } | { displayName: string; name: string; type: "string"; default: string; typeOptions?: undefined; })[]; }