n8n-nodes-ssl-checker
Version:
SSL Checker
11 lines (10 loc) • 543 B
TypeScript
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[][]>;
}