@sixsevenai/ai-dlc-installer 1.0.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.
package/dist/cli.d.ts ADDED
@@ -0,0 +1,22 @@
1
+ /**
2
+ * CLI Entry Point for @sixsevenai/ai-dlc-installer
3
+ *
4
+ * Parses command-line arguments, validates flags, and delegates to
5
+ * the orchestrator workflow. Supports the `install` subcommand with
6
+ * `--target`, `--force`, `--dry-run`, `--verbose`, `--no-color`,
7
+ * and `--quiet` flags.
8
+ *
9
+ * @module cli
10
+ */
11
+ interface CliFlags {
12
+ readonly version: boolean;
13
+ readonly help: boolean;
14
+ readonly verbose: boolean;
15
+ readonly dryRun: boolean;
16
+ readonly noColor: boolean;
17
+ readonly force: boolean;
18
+ readonly quiet: boolean;
19
+ readonly target: string | null;
20
+ }
21
+
22
+ export type { CliFlags };