(key: string)
| 473 | } |
| 474 | |
| 475 | export const getCommandByKey = (key: string): CommandDefinition | undefined => COMMANDS_BY_KEY.get(key) |
| 476 | |
| 477 | const getFeaturedCommands = (): CommandDefinition[] => COMMANDS.filter((command) => command.featured) |
| 478 |
no test coverage detected