n8n-nodes-wechat-pad-pro
Version:
n8n node for WeChatPadPro, allowing you to automate WeChat messaging and interactions within your n8n workflows. Support WeChatPadPro0859
11 lines (10 loc) • 538 B
TypeScript
import { IExecuteFunctions, INodeExecutionData, INodeType, INodeTypeDescription, INodeCredentialTestResult, ICredentialTestFunctions, ICredentialsDecrypted } from 'n8n-workflow';
export declare class WeChatPadPro implements INodeType {
description: INodeTypeDescription;
methods: {
credentialTest: {
testCredential(this: ICredentialTestFunctions, credential: ICredentialsDecrypted): Promise<INodeCredentialTestResult>;
};
};
execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>;
}