( self: Descriptor.Command<A>, config: CliConfig.CliConfig )
| 163 | |
| 164 | /** @internal */ |
| 165 | export const getHelp = <A>( |
| 166 | self: Descriptor.Command<A>, |
| 167 | config: CliConfig.CliConfig |
| 168 | ): HelpDoc.HelpDoc => getHelpInternal(self as Instruction, config) |
| 169 | |
| 170 | /** @internal */ |
| 171 | export const getNames = <A>(self: Descriptor.Command<A>): HashSet.HashSet<string> => |
nothing calls this directly
no test coverage detected