@warlok-net/cli 0.1.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/chunk-YTUZMXWJ.mjs +781 -0
- package/dist/cli.d.mts +1 -0
- package/dist/cli.d.ts +1 -0
- package/dist/cli.js +798 -0
- package/dist/cli.mjs +12 -0
- package/dist/index.d.mts +11 -0
- package/dist/index.d.ts +11 -0
- package/dist/index.js +820 -0
- package/dist/index.mjs +22 -0
- package/package.json +45 -0
package/dist/cli.mjs
ADDED
package/dist/index.d.mts
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
declare function runGenerate(args: string[]): Promise<void>;
|
|
2
|
+
declare function runStatus(args: string[]): Promise<void>;
|
|
3
|
+
declare function runList(args: string[]): Promise<void>;
|
|
4
|
+
declare function runDownload(args: string[]): Promise<void>;
|
|
5
|
+
declare function runTools(args: string[]): Promise<void>;
|
|
6
|
+
declare function runAgent(args: string[]): Promise<void>;
|
|
7
|
+
declare function mainHelpText(): string;
|
|
8
|
+
declare function run(argv: string[]): Promise<void>;
|
|
9
|
+
declare function formatCliError(error: unknown): string;
|
|
10
|
+
|
|
11
|
+
export { formatCliError, mainHelpText, run, runAgent, runDownload, runGenerate, runList, runStatus, runTools };
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
declare function runGenerate(args: string[]): Promise<void>;
|
|
2
|
+
declare function runStatus(args: string[]): Promise<void>;
|
|
3
|
+
declare function runList(args: string[]): Promise<void>;
|
|
4
|
+
declare function runDownload(args: string[]): Promise<void>;
|
|
5
|
+
declare function runTools(args: string[]): Promise<void>;
|
|
6
|
+
declare function runAgent(args: string[]): Promise<void>;
|
|
7
|
+
declare function mainHelpText(): string;
|
|
8
|
+
declare function run(argv: string[]): Promise<void>;
|
|
9
|
+
declare function formatCliError(error: unknown): string;
|
|
10
|
+
|
|
11
|
+
export { formatCliError, mainHelpText, run, runAgent, runDownload, runGenerate, runList, runStatus, runTools };
|