UNPKG

n8n-nodes-cativa

Version:

This is an n8n community node to communicate with Cativa.

11 lines (10 loc) 555 B
import { ICredentialsDecrypted, ICredentialTestFunctions, IExecuteFunctions, INodeCredentialTestResult, INodeExecutionData, INodeType, INodeTypeDescription } from 'n8n-workflow'; export declare class Cativa implements INodeType { description: INodeTypeDescription; methods: { credentialTest: { cativaCredentialTest(this: ICredentialTestFunctions, credential: ICredentialsDecrypted): Promise<INodeCredentialTestResult>; }; }; execute(this: IExecuteFunctions): Promise<INodeExecutionData[][] | null>; }