@oclif/core 2.0.0-beta.6 → 2.0.0-beta.7
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
|
@@ -105,7 +105,7 @@ export declare abstract class Command {
|
|
|
105
105
|
/**
|
|
106
106
|
* actual command run code goes here
|
|
107
107
|
*/
|
|
108
|
-
abstract run():
|
|
108
|
+
abstract run(): Promise<any>;
|
|
109
109
|
protected init(): Promise<any>;
|
|
110
110
|
protected warnIfFlagDeprecated(flags: Record<string, unknown>): void;
|
|
111
111
|
protected warnIfCommandDeprecated(): void;
|