UNPKG

n8n-nodes-ssl-checker

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