(name: string)
| 40 | * Get a global command by name |
| 41 | */ |
| 42 | export function getGlobalCommand(name: string): GlobalCommand | undefined { |
| 43 | return GLOBAL_COMMANDS.find((cmd) => cmd.name === name) |
| 44 | } |
| 45 | |
| 46 | /** |
| 47 | * Get global commands formatted for autocomplete |
no outgoing calls
no test coverage detected