n8n-nodes-nmap
Version:
Nmap Scan
7 lines (6 loc) • 339 B
TypeScript
import { CredentialInformation } from 'n8n-workflow';
export declare class ShellUtils {
sudoCommand(command: string, workingDirectory: string, password: CredentialInformation | undefined): Promise<string>;
command(command: string, workingDirectory: string): Promise<string>;
resolveHomeFolder(path: string): Promise<string>;
}