UNPKG

n8n-nodes-wechat-work

Version:
12 lines (11 loc) 588 B
import { IExecuteFunctions, INodeCredentialTestResult, INodeExecutionData, INodeType, INodeTypeDescription } from 'n8n-workflow'; import { ICredentialsDecrypted, ICredentialTestFunctions } from 'n8n-workflow/dist/Interfaces'; export declare class WechatWorkNode implements INodeType { description: INodeTypeDescription; methods: { credentialTest: { accessTokenTest(this: ICredentialTestFunctions, credential: ICredentialsDecrypted): Promise<INodeCredentialTestResult>; }; }; execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>; }