UNPKG

n8n-nodes-customssh

Version:

n8n community node for advanced SSH connections with configurable ciphers and network device support

14 lines (13 loc) 353 B
/** * Utility class for logging SSH operations */ export declare class LoggingUtils { /** * Log a message if verbose logging is enabled */ static log(message: string, verboseLogging: boolean): void; /** * Log an error if verbose logging is enabled */ static error(message: string, verboseLogging: boolean): void; }