UNPKG

@ai-growth/wordpress

Version:

n8n node for WordPress integration with AI GROWTH - SEO WP plugin

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