()
| 27 | } |
| 28 | |
| 29 | export function listCommandMetadataNames(): CommandName[] { |
| 30 | return [...commandMetadataMap.keys()].sort(); |
| 31 | } |
| 32 | |
| 33 | export function isCommandName(name: string): name is CommandName { |
| 34 | return commandMetadataMap.has(name as CommandName); |
no outgoing calls
no test coverage detected