( self: Descriptor.Command<A> )
| 191 | |
| 192 | /** @internal */ |
| 193 | export const getSubcommands = <A>( |
| 194 | self: Descriptor.Command<A> |
| 195 | ): HashMap.HashMap<string, Descriptor.Command<unknown>> => |
| 196 | HashMap.fromIterable(getSubcommandsInternal(self as Instruction)) |
| 197 | |
| 198 | /** @internal */ |
| 199 | export const getUsage = <A>(self: Descriptor.Command<A>): Usage.Usage => getUsageInternal(self as Instruction) |
nothing calls this directly
no test coverage detected
searching dependent graphs…