@basou/cli 0.4.0 → 0.5.0

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.
@@ -0,0 +1,15 @@
1
+ import { Command } from 'commander';
2
+
3
+ declare const BASOU_CLI_VERSION: string;
4
+ /**
5
+ * Build the fully-registered `basou` command tree WITHOUT parsing argv.
6
+ *
7
+ * This is the side-effect-free entry shared by the CLI binary (./index.ts)
8
+ * and any introspection consumer — e.g. the docs generator that renders the
9
+ * command reference from the published `@basou/cli`. Importing this module
10
+ * must never parse `process.argv` or run a command action; `index.ts` owns
11
+ * the single `parseAsync` call.
12
+ */
13
+ declare function buildProgram(): Command;
14
+
15
+ export { BASOU_CLI_VERSION, buildProgram };