bob-core 0.5.0 → 0.5.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/dist/Command.d.ts +1 -1
- package/package.json +1 -1
package/dist/Command.d.ts
CHANGED
|
@@ -4,7 +4,7 @@ export type CommandExample = {
|
|
|
4
4
|
description: string;
|
|
5
5
|
command: string;
|
|
6
6
|
};
|
|
7
|
-
export declare abstract class Command<C =
|
|
7
|
+
export declare abstract class Command<C = undefined> extends CommandHelper {
|
|
8
8
|
abstract signature: string;
|
|
9
9
|
abstract description: string;
|
|
10
10
|
protected ctx: C;
|