bailian-cli-core 1.3.1 → 1.3.3
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/index.d.mts +2 -0
- package/dist/index.mjs +1 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -903,6 +903,7 @@ interface Command {
|
|
|
903
903
|
usage?: string;
|
|
904
904
|
options?: OptionDef[];
|
|
905
905
|
examples?: string[];
|
|
906
|
+
notes?: string[];
|
|
906
907
|
execute: (config: Config, flags: GlobalFlags) => Promise<void>;
|
|
907
908
|
}
|
|
908
909
|
interface CommandSpec {
|
|
@@ -911,6 +912,7 @@ interface CommandSpec {
|
|
|
911
912
|
usage?: string;
|
|
912
913
|
options?: OptionDef[];
|
|
913
914
|
examples?: string[];
|
|
915
|
+
notes?: string[];
|
|
914
916
|
run: (config: Config, flags: GlobalFlags) => Promise<void>;
|
|
915
917
|
}
|
|
916
918
|
declare function defineCommand(spec: CommandSpec): Command;
|
package/dist/index.mjs
CHANGED
package/package.json
CHANGED