method Command.prototype.getCommandimport { Command } from "https://dotland.deno.dev/x/cliffy@v0.25.4/command/command.ts"; getCommand<TCommand extends Command<any>>(name: string, hidden?: boolean): TCommand | undefinedGet command by name or alias. Type ParametersTCommand extends Command<any>Parametersname: stringName or alias of the command. optionalhidden: booleanInclude hidden commands. ReturnsTCommand | undefined