n8n-nodes-customssh
Version:
n8n community node for advanced SSH connections with configurable ciphers and network device support
9 lines (8 loc) • 373 B
TypeScript
import { IExecuteFunctions, INodeExecutionData, INodeType, INodeTypeDescription } from 'n8n-workflow';
/**
* Custom SSH Node for n8n that handles network device connections with varied SSH requirements
*/
export declare class CustomSsh implements INodeType {
description: INodeTypeDescription;
execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>;
}