We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c749eb8 commit d3b48f7Copy full SHA for d3b48f7
typings/index.d.ts
@@ -163,11 +163,6 @@ export class Option {
163
*/
164
env(name: string): this;
165
166
- /**
167
- * Calculate the full description, including defaultValue etc.
168
- */
169
- fullDescription(): string;
170
-
171
/**
172
* Set the custom handler for processing CLI option arguments into option values.
173
typings/index.test-d.ts
@@ -617,9 +617,6 @@ expectType<commander.Option>(baseOption.preset('abc'));
617
// env
618
expectType<commander.Option>(baseOption.env('PORT'));
619
620
-// fullDescription
621
-expectType<string>(baseOption.fullDescription());
622
623
// argParser
624
expectType<commander.Option>(
625
baseOption.argParser((value: string) => parseInt(value)),
0 commit comments