@oclif/core 4.0.0 → 4.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/command.d.ts +1 -1
- package/package.json +1 -1
package/lib/command.d.ts
CHANGED
|
@@ -109,7 +109,7 @@ export declare abstract class Command {
|
|
|
109
109
|
log(message?: string, ...args: any[]): void;
|
|
110
110
|
protected logJson(json: unknown): void;
|
|
111
111
|
logToStderr(message?: string, ...args: any[]): void;
|
|
112
|
-
protected parse<F extends FlagOutput, B extends FlagOutput, A extends ArgOutput>(options?: Input<F, B, A>, argv?: string[]): Promise<ParserOutput<F, A>>;
|
|
112
|
+
protected parse<F extends FlagOutput, B extends FlagOutput, A extends ArgOutput>(options?: Input<F, B, A>, argv?: string[]): Promise<ParserOutput<F, B, A>>;
|
|
113
113
|
protected toErrorJson(err: unknown): any;
|
|
114
114
|
protected toSuccessJson(result: unknown): any;
|
|
115
115
|
warn(input: Error | string): Error | string;
|