export interface ICommanderOptions { showFriendlyErrorStack?: boolean; } /** * Commander * * This is the base class of Redis, Redis.Cluster and Pipeline * * @param {boolean} [options.showFriendlyErrorStack=false] - Whether to show a friendly error stack. * Will decrease the performance significantly. * @constructor */ export default function Commander(): void;