UNPKG

n8n-nodes-base

Version:

Base nodes of n8n

12 lines 680 B
import type { ICredentialsDecrypted, ICredentialTestFunctions, IExecuteFunctions, INodeCredentialTestResult, INodeExecutionData, INodeType, INodeTypeBaseDescription, INodeTypeDescription } from 'n8n-workflow'; export declare class PostgresV1 implements INodeType { description: INodeTypeDescription; constructor(baseDescription: INodeTypeBaseDescription); methods: { credentialTest: { postgresConnectionTest(this: ICredentialTestFunctions, credential: ICredentialsDecrypted): Promise<INodeCredentialTestResult>; }; }; execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>; } //# sourceMappingURL=PostgresV1.node.d.ts.map