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