n8n-nodes-sshv2
Version:
2 N8N ( Node & AI Agent Tool) for SSH operations Dynamically Configurable parameters NO credentials, including command execution, file uploads, and downloads by Hadidiz, HadidizFlow
15 lines (14 loc) • 574 B
TypeScript
import type { IExecuteFunctions, INodeExecutionData, INodeType, INodeTypeDescription } from 'n8n-workflow';
interface IExtendedNodeTypeDescription extends INodeTypeDescription {
usableAsTool?: boolean;
}
export declare class SshTool implements INodeType {
description: IExtendedNodeTypeDescription;
methods: {
loadOptions: {};
};
getImplementationDescription(operation: string): string;
getParameterDescription(parameter: string, operation: string): string;
execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>;
}
export {};