n8n-nodes-chatwoot
Version:
This is an n8n community node. It lets you use ChatWoot in your n8n workflows.
11 lines (10 loc) • 554 B
TypeScript
import { ICredentialsDecrypted, ICredentialTestFunctions, IExecuteFunctions, INodeCredentialTestResult, INodeExecutionData, INodeType, INodeTypeDescription } from 'n8n-workflow';
export declare class ChatWoot implements INodeType {
description: INodeTypeDescription;
methods: {
credentialTest: {
chatWootTokenTest(this: ICredentialTestFunctions, credential: ICredentialsDecrypted): Promise<INodeCredentialTestResult>;
};
};
execute(this: IExecuteFunctions): Promise<INodeExecutionData[][] | null>;
}