* Set/get the help group heading for this subcommand in parent command's help. * * @param {string} [heading] * @return {Command | string}
(heading)
| 2356 | */ |
| 2357 | |
| 2358 | helpGroup(heading) { |
| 2359 | if (heading === undefined) return this._helpGroupHeading ?? ''; |
| 2360 | this._helpGroupHeading = heading; |
| 2361 | return this; |
| 2362 | } |
| 2363 | |
| 2364 | /** |
| 2365 | * Set/get the default help group heading for subcommands added to this command. |
no outgoing calls
no test coverage detected