Example #1
0
 public OutputBuilder RenderCommandsList(IEnumerable <Command> commands, string categoryName)
 {
     return(currentCommandsListRenderer.Render(commands, categoryName));
 }
Example #2
0
 public OutputBuilder RenderCommandsList(TerminalOptions terminalOptions, IEnumerable <Command> commands, string categoryName)
 {
     return(currentCommandsListRenderer.Render(terminalOptions, commands, categoryName));
 }
Example #3
0
 public string RenderCommandsList(ITerminal terminal, IEnumerable <Command> commands, string categoryName)
 {
     return(currentCommandsListRenderer.Render(terminal, commands, categoryName));
 }