citty 0.1.5 → 0.2.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/package.json CHANGED
@@ -1,49 +1,41 @@
1
1
  {
2
2
  "name": "citty",
3
- "version": "0.1.5",
3
+ "version": "0.2.0",
4
4
  "description": "Elegant CLI Builder",
5
5
  "repository": "unjs/citty",
6
6
  "license": "MIT",
7
7
  "sideEffects": false,
8
8
  "type": "module",
9
9
  "exports": {
10
- ".": {
11
- "types": "./dist/index.d.ts",
12
- "import": "./dist/index.mjs",
13
- "require": "./dist/index.cjs"
14
- }
10
+ ".": "./dist/index.mjs"
15
11
  },
16
- "main": "./dist/index.cjs",
17
- "module": "./dist/index.mjs",
18
- "types": "./dist/index.d.ts",
12
+ "types": "./dist/index.d.mts",
19
13
  "files": [
20
14
  "dist"
21
15
  ],
22
16
  "scripts": {
23
- "build": "unbuild",
17
+ "build": "obuild",
24
18
  "dev": "vitest dev",
25
- "lint": "eslint --cache --ext .ts,.js,.mjs,.cjs . && prettier -c src test",
26
- "lint:fix": "eslint --cache --ext .ts,.js,.mjs,.cjs . --fix && prettier -c src test -w",
19
+ "lint": "eslint --cache . && prettier -c src test",
20
+ "lint:fix": "eslint --cache . --fix && prettier -c src test -w",
27
21
  "prepack": "pnpm run build",
28
- "play": "jiti ./playground/cli.ts",
29
- "release": "pnpm test && changelogen --release --push && npm publish",
30
- "test": "pnpm lint && vitest run --coverage"
31
- },
32
- "dependencies": {
33
- "consola": "^3.2.3"
22
+ "play": "node ./playground/cli.ts",
23
+ "release": "pnpm test && pnpm build && changelogen --release --push && npm publish",
24
+ "test": "pnpm lint && pnpm test:types && vitest run --coverage",
25
+ "test:types": "tsc --noEmit"
34
26
  },
35
27
  "devDependencies": {
36
- "@types/node": "^20.9.0",
37
- "@vitest/coverage-v8": "^0.34.6",
38
- "changelogen": "^0.5.5",
39
- "eslint": "^8.53.0",
40
- "eslint-config-unjs": "^0.2.1",
41
- "jiti": "^1.21.0",
42
- "prettier": "^3.1.0",
43
- "scule": "^1.0.0",
44
- "typescript": "^5.2.2",
45
- "unbuild": "^2.0.0",
46
- "vitest": "^0.34.6"
28
+ "@types/node": "^25.0.9",
29
+ "@vitest/coverage-v8": "^4.0.17",
30
+ "automd": "^0.4.2",
31
+ "changelogen": "^0.6.2",
32
+ "eslint": "^9.39.2",
33
+ "eslint-config-unjs": "^0.6.2",
34
+ "obuild": "^0.4.18",
35
+ "prettier": "^3.8.0",
36
+ "scule": "^1.3.0",
37
+ "typescript": "^5.9.3",
38
+ "vitest": "^4.0.17"
47
39
  },
48
- "packageManager": "pnpm@8.10.3"
49
- }
40
+ "packageManager": "pnpm@10.28.1"
41
+ }
package/dist/index.cjs DELETED
@@ -1,471 +0,0 @@
1
- 'use strict';
2
-
3
- const consola = require('consola');
4
- const utils = require('consola/utils');
5
-
6
- function _interopDefaultCompat (e) { return e && typeof e === 'object' && 'default' in e ? e.default : e; }
7
-
8
- const consola__default = /*#__PURE__*/_interopDefaultCompat(consola);
9
-
10
- function toArray(val) {
11
- if (Array.isArray(val)) {
12
- return val;
13
- }
14
- return val === void 0 ? [] : [val];
15
- }
16
- function formatLineColumns(lines, linePrefix = "") {
17
- const maxLengh = [];
18
- for (const line of lines) {
19
- for (const [i, element] of line.entries()) {
20
- maxLengh[i] = Math.max(maxLengh[i] || 0, element.length);
21
- }
22
- }
23
- return lines.map(
24
- (l) => l.map(
25
- (c, i) => linePrefix + c[i === 0 ? "padStart" : "padEnd"](maxLengh[i])
26
- ).join(" ")
27
- ).join("\n");
28
- }
29
- function resolveValue(input) {
30
- return typeof input === "function" ? input() : input;
31
- }
32
- class CLIError extends Error {
33
- constructor(message, code) {
34
- super(message);
35
- this.code = code;
36
- this.name = "CLIError";
37
- }
38
- }
39
-
40
- const NUMBER_CHAR_RE = /\d/;
41
- const STR_SPLITTERS = ["-", "_", "/", "."];
42
- function isUppercase(char = "") {
43
- if (NUMBER_CHAR_RE.test(char)) {
44
- return void 0;
45
- }
46
- return char.toUpperCase() === char;
47
- }
48
- function splitByCase(string_, separators) {
49
- const splitters = separators ?? STR_SPLITTERS;
50
- const parts = [];
51
- if (!string_ || typeof string_ !== "string") {
52
- return parts;
53
- }
54
- let buff = "";
55
- let previousUpper;
56
- let previousSplitter;
57
- for (const char of string_) {
58
- const isSplitter = splitters.includes(char);
59
- if (isSplitter === true) {
60
- parts.push(buff);
61
- buff = "";
62
- previousUpper = void 0;
63
- continue;
64
- }
65
- const isUpper = isUppercase(char);
66
- if (previousSplitter === false) {
67
- if (previousUpper === false && isUpper === true) {
68
- parts.push(buff);
69
- buff = char;
70
- previousUpper = isUpper;
71
- continue;
72
- }
73
- if (previousUpper === true && isUpper === false && buff.length > 1) {
74
- const lastChar = buff[buff.length - 1];
75
- parts.push(buff.slice(0, Math.max(0, buff.length - 1)));
76
- buff = lastChar + char;
77
- previousUpper = isUpper;
78
- continue;
79
- }
80
- }
81
- buff += char;
82
- previousUpper = isUpper;
83
- previousSplitter = isSplitter;
84
- }
85
- parts.push(buff);
86
- return parts;
87
- }
88
- function upperFirst(string_) {
89
- return !string_ ? "" : string_[0].toUpperCase() + string_.slice(1);
90
- }
91
- function lowerFirst(string_) {
92
- return !string_ ? "" : string_[0].toLowerCase() + string_.slice(1);
93
- }
94
- function pascalCase(string_) {
95
- return !string_ ? "" : (Array.isArray(string_) ? string_ : splitByCase(string_)).map((p) => upperFirst(p)).join("");
96
- }
97
- function camelCase(string_) {
98
- return lowerFirst(pascalCase(string_));
99
- }
100
- function kebabCase(string_, joiner) {
101
- return !string_ ? "" : (Array.isArray(string_) ? string_ : splitByCase(string_)).map((p) => p.toLowerCase()).join(joiner ?? "-");
102
- }
103
-
104
- function toArr(any) {
105
- return any == void 0 ? [] : Array.isArray(any) ? any : [any];
106
- }
107
- function toVal(out, key, val, opts) {
108
- let x;
109
- const old = out[key];
110
- const nxt = ~opts.string.indexOf(key) ? val == void 0 || val === true ? "" : String(val) : typeof val === "boolean" ? val : ~opts.boolean.indexOf(key) ? val === "false" ? false : val === "true" || (out._.push((x = +val, x * 0 === 0) ? x : val), !!val) : (x = +val, x * 0 === 0) ? x : val;
111
- out[key] = old == void 0 ? nxt : Array.isArray(old) ? old.concat(nxt) : [old, nxt];
112
- }
113
- function parseRawArgs(args = [], opts = {}) {
114
- let k;
115
- let arr;
116
- let arg;
117
- let name;
118
- let val;
119
- const out = { _: [] };
120
- let i = 0;
121
- let j = 0;
122
- let idx = 0;
123
- const len = args.length;
124
- const alibi = opts.alias !== void 0;
125
- const strict = opts.unknown !== void 0;
126
- const defaults = opts.default !== void 0;
127
- opts.alias = opts.alias || {};
128
- opts.string = toArr(opts.string);
129
- opts.boolean = toArr(opts.boolean);
130
- if (alibi) {
131
- for (k in opts.alias) {
132
- arr = opts.alias[k] = toArr(opts.alias[k]);
133
- for (i = 0; i < arr.length; i++) {
134
- (opts.alias[arr[i]] = arr.concat(k)).splice(i, 1);
135
- }
136
- }
137
- }
138
- for (i = opts.boolean.length; i-- > 0; ) {
139
- arr = opts.alias[opts.boolean[i]] || [];
140
- for (j = arr.length; j-- > 0; ) {
141
- opts.boolean.push(arr[j]);
142
- }
143
- }
144
- for (i = opts.string.length; i-- > 0; ) {
145
- arr = opts.alias[opts.string[i]] || [];
146
- for (j = arr.length; j-- > 0; ) {
147
- opts.string.push(arr[j]);
148
- }
149
- }
150
- if (defaults) {
151
- for (k in opts.default) {
152
- name = typeof opts.default[k];
153
- arr = opts.alias[k] = opts.alias[k] || [];
154
- if (opts[name] !== void 0) {
155
- opts[name].push(k);
156
- for (i = 0; i < arr.length; i++) {
157
- opts[name].push(arr[i]);
158
- }
159
- }
160
- }
161
- }
162
- const keys = strict ? Object.keys(opts.alias) : [];
163
- for (i = 0; i < len; i++) {
164
- arg = args[i];
165
- if (arg === "--") {
166
- out._ = out._.concat(args.slice(++i));
167
- break;
168
- }
169
- for (j = 0; j < arg.length; j++) {
170
- if (arg.charCodeAt(j) !== 45) {
171
- break;
172
- }
173
- }
174
- if (j === 0) {
175
- out._.push(arg);
176
- } else if (arg.substring(j, j + 3) === "no-") {
177
- name = arg.slice(Math.max(0, j + 3));
178
- if (strict && !~keys.indexOf(name)) {
179
- return opts.unknown(arg);
180
- }
181
- out[name] = false;
182
- } else {
183
- for (idx = j + 1; idx < arg.length; idx++) {
184
- if (arg.charCodeAt(idx) === 61) {
185
- break;
186
- }
187
- }
188
- name = arg.substring(j, idx);
189
- val = arg.slice(Math.max(0, ++idx)) || i + 1 === len || ("" + args[i + 1]).charCodeAt(0) === 45 || args[++i];
190
- arr = j === 2 ? [name] : name;
191
- for (idx = 0; idx < arr.length; idx++) {
192
- name = arr[idx];
193
- if (strict && !~keys.indexOf(name)) {
194
- return opts.unknown("-".repeat(j) + name);
195
- }
196
- toVal(out, name, idx + 1 < arr.length || val, opts);
197
- }
198
- }
199
- }
200
- if (defaults) {
201
- for (k in opts.default) {
202
- if (out[k] === void 0) {
203
- out[k] = opts.default[k];
204
- }
205
- }
206
- }
207
- if (alibi) {
208
- for (k in out) {
209
- arr = opts.alias[k] || [];
210
- while (arr.length > 0) {
211
- out[arr.shift()] = out[k];
212
- }
213
- }
214
- }
215
- return out;
216
- }
217
-
218
- function parseArgs(rawArgs, argsDef) {
219
- const parseOptions = {
220
- boolean: [],
221
- string: [],
222
- mixed: [],
223
- alias: {},
224
- default: {}
225
- };
226
- const args = resolveArgs(argsDef);
227
- for (const arg of args) {
228
- if (arg.type === "positional") {
229
- continue;
230
- }
231
- if (arg.type === "string") {
232
- parseOptions.string.push(arg.name);
233
- } else if (arg.type === "boolean") {
234
- parseOptions.boolean.push(arg.name);
235
- }
236
- if (arg.default !== void 0) {
237
- parseOptions.default[arg.name] = arg.default;
238
- }
239
- if (arg.alias) {
240
- parseOptions.alias[arg.name] = arg.alias;
241
- }
242
- }
243
- const parsed = parseRawArgs(rawArgs, parseOptions);
244
- const [...positionalArguments] = parsed._;
245
- const parsedArgsProxy = new Proxy(parsed, {
246
- get(target, prop) {
247
- return target[prop] ?? target[camelCase(prop)] ?? target[kebabCase(prop)];
248
- }
249
- });
250
- for (const [, arg] of args.entries()) {
251
- if (arg.type === "positional") {
252
- const nextPositionalArgument = positionalArguments.shift();
253
- if (nextPositionalArgument !== void 0) {
254
- parsedArgsProxy[arg.name] = nextPositionalArgument;
255
- } else if (arg.default === void 0 && arg.required !== false) {
256
- throw new CLIError(
257
- `Missing required positional argument: ${arg.name.toUpperCase()}`,
258
- "EARG"
259
- );
260
- } else {
261
- parsedArgsProxy[arg.name] = arg.default;
262
- }
263
- } else if (arg.required && parsedArgsProxy[arg.name] === void 0) {
264
- throw new CLIError(`Missing required argument: --${arg.name}`, "EARG");
265
- }
266
- }
267
- return parsedArgsProxy;
268
- }
269
- function resolveArgs(argsDef) {
270
- const args = [];
271
- for (const [name, argDef] of Object.entries(argsDef || {})) {
272
- args.push({
273
- ...argDef,
274
- name,
275
- alias: toArray(argDef.alias)
276
- });
277
- }
278
- return args;
279
- }
280
-
281
- function defineCommand(def) {
282
- return def;
283
- }
284
- async function runCommand(cmd, opts) {
285
- const cmdArgs = await resolveValue(cmd.args || {});
286
- const parsedArgs = parseArgs(opts.rawArgs, cmdArgs);
287
- const context = {
288
- rawArgs: opts.rawArgs,
289
- args: parsedArgs,
290
- data: opts.data,
291
- cmd
292
- };
293
- if (typeof cmd.setup === "function") {
294
- await cmd.setup(context);
295
- }
296
- let result;
297
- try {
298
- const subCommands = await resolveValue(cmd.subCommands);
299
- if (subCommands && Object.keys(subCommands).length > 0) {
300
- const subCommandArgIndex = opts.rawArgs.findIndex(
301
- (arg) => !arg.startsWith("-")
302
- );
303
- const subCommandName = opts.rawArgs[subCommandArgIndex];
304
- if (subCommandName) {
305
- if (!subCommands[subCommandName]) {
306
- throw new CLIError(
307
- `Unknown command \`${subCommandName}\``,
308
- "E_UNKNOWN_COMMAND"
309
- );
310
- }
311
- const subCommand = await resolveValue(subCommands[subCommandName]);
312
- if (subCommand) {
313
- await runCommand(subCommand, {
314
- rawArgs: opts.rawArgs.slice(subCommandArgIndex + 1)
315
- });
316
- }
317
- } else if (!cmd.run) {
318
- throw new CLIError(`No command specified.`, "E_NO_COMMAND");
319
- }
320
- }
321
- if (typeof cmd.run === "function") {
322
- result = await cmd.run(context);
323
- }
324
- } finally {
325
- if (typeof cmd.cleanup === "function") {
326
- await cmd.cleanup(context);
327
- }
328
- }
329
- return { result };
330
- }
331
- async function resolveSubCommand(cmd, rawArgs, parent) {
332
- const subCommands = await resolveValue(cmd.subCommands);
333
- if (subCommands && Object.keys(subCommands).length > 0) {
334
- const subCommandArgIndex = rawArgs.findIndex((arg) => !arg.startsWith("-"));
335
- const subCommandName = rawArgs[subCommandArgIndex];
336
- const subCommand = await resolveValue(subCommands[subCommandName]);
337
- if (subCommand) {
338
- return resolveSubCommand(
339
- subCommand,
340
- rawArgs.slice(subCommandArgIndex + 1),
341
- cmd
342
- );
343
- }
344
- }
345
- return [cmd, parent];
346
- }
347
-
348
- async function showUsage(cmd, parent) {
349
- try {
350
- consola__default.log(await renderUsage(cmd, parent) + "\n");
351
- } catch (error) {
352
- consola__default.error(error);
353
- }
354
- }
355
- async function renderUsage(cmd, parent) {
356
- const cmdMeta = await resolveValue(cmd.meta || {});
357
- const cmdArgs = resolveArgs(await resolveValue(cmd.args || {}));
358
- const parentMeta = await resolveValue(parent?.meta || {});
359
- const commandName = `${parentMeta.name ? `${parentMeta.name} ` : ""}` + (cmdMeta.name || process.argv[1]);
360
- const argLines = [];
361
- const posLines = [];
362
- const commandsLines = [];
363
- const usageLine = [];
364
- for (const arg of cmdArgs) {
365
- if (arg.type === "positional") {
366
- const name = arg.name.toUpperCase();
367
- const isRequired = arg.required !== false && arg.default === void 0;
368
- const usageHint = arg.default ? `="${arg.default}"` : "";
369
- posLines.push(["`" + name + usageHint + "`", arg.description || ""]);
370
- usageLine.push(isRequired ? `<${name}>` : `[${name}]`);
371
- } else {
372
- const isRequired = arg.required === true && arg.default === void 0;
373
- const argStr = (arg.type === "boolean" && arg.default === true ? [
374
- ...(arg.alias || []).map((a) => `--no-${a}`),
375
- `--no-${arg.name}`
376
- ].join(", ") : [...(arg.alias || []).map((a) => `-${a}`), `--${arg.name}`].join(
377
- ", "
378
- )) + (arg.type === "string" && (arg.valueHint || arg.default) ? `=${arg.valueHint ? `<${arg.valueHint}>` : `"${arg.default || ""}"`}` : "");
379
- argLines.push([
380
- "`" + argStr + (isRequired ? " (required)" : "") + "`",
381
- arg.description || ""
382
- ]);
383
- if (isRequired) {
384
- usageLine.push(argStr);
385
- }
386
- }
387
- }
388
- if (cmd.subCommands) {
389
- const commandNames = [];
390
- const subCommands = await resolveValue(cmd.subCommands);
391
- for (const [name, sub] of Object.entries(subCommands)) {
392
- const subCmd = await resolveValue(sub);
393
- const meta = await resolveValue(subCmd?.meta);
394
- commandsLines.push([`\`${name}\``, meta?.description || ""]);
395
- commandNames.push(name);
396
- }
397
- usageLine.push(commandNames.join("|"));
398
- }
399
- const usageLines = [];
400
- const version = cmdMeta.version || parentMeta.version;
401
- usageLines.push(
402
- utils.colors.gray(
403
- `${cmdMeta.description} (${commandName + (version ? ` v${version}` : "")})`
404
- ),
405
- ""
406
- );
407
- const hasOptions = argLines.length > 0 || posLines.length > 0;
408
- usageLines.push(
409
- `${utils.colors.underline(utils.colors.bold("USAGE"))} \`${commandName}${hasOptions ? " [OPTIONS]" : ""} ${usageLine.join(" ")}\``,
410
- ""
411
- );
412
- if (posLines.length > 0) {
413
- usageLines.push(utils.colors.underline(utils.colors.bold("ARGUMENTS")), "");
414
- usageLines.push(formatLineColumns(posLines, " "));
415
- usageLines.push("");
416
- }
417
- if (argLines.length > 0) {
418
- usageLines.push(utils.colors.underline(utils.colors.bold("OPTIONS")), "");
419
- usageLines.push(formatLineColumns(argLines, " "));
420
- usageLines.push("");
421
- }
422
- if (commandsLines.length > 0) {
423
- usageLines.push(utils.colors.underline(utils.colors.bold("COMMANDS")), "");
424
- usageLines.push(formatLineColumns(commandsLines, " "));
425
- usageLines.push(
426
- "",
427
- `Use \`${commandName} <command> --help\` for more information about a command.`
428
- );
429
- }
430
- return usageLines.filter((l) => typeof l === "string").join("\n");
431
- }
432
-
433
- async function runMain(cmd, opts = {}) {
434
- const rawArgs = opts.rawArgs || process.argv.slice(2);
435
- const showUsage$1 = opts.showUsage || showUsage;
436
- try {
437
- if (rawArgs.includes("--help") || rawArgs.includes("-h")) {
438
- await showUsage$1(...await resolveSubCommand(cmd, rawArgs));
439
- process.exit(0);
440
- } else if (rawArgs.length === 1 && rawArgs[0] === "--version") {
441
- const meta = typeof cmd.meta === "function" ? await cmd.meta() : await cmd.meta;
442
- if (!meta?.version) {
443
- throw new CLIError("No version specified", "E_NO_VERSION");
444
- }
445
- consola__default.log(meta.version);
446
- } else {
447
- await runCommand(cmd, { rawArgs });
448
- }
449
- } catch (error) {
450
- const isCLIError = error instanceof CLIError;
451
- if (!isCLIError) {
452
- consola__default.error(error, "\n");
453
- }
454
- if (isCLIError) {
455
- await showUsage$1(...await resolveSubCommand(cmd, rawArgs));
456
- }
457
- consola__default.error(error.message);
458
- process.exit(1);
459
- }
460
- }
461
- function createMain(cmd) {
462
- return (opts = {}) => runMain(cmd, opts);
463
- }
464
-
465
- exports.createMain = createMain;
466
- exports.defineCommand = defineCommand;
467
- exports.parseArgs = parseArgs;
468
- exports.renderUsage = renderUsage;
469
- exports.runCommand = runCommand;
470
- exports.runMain = runMain;
471
- exports.showUsage = showUsage;
package/dist/index.d.cts DELETED
@@ -1,80 +0,0 @@
1
- type ArgType = "boolean" | "string" | "positional" | undefined;
2
- type _ArgDef<T extends ArgType, VT extends boolean | string> = {
3
- type?: T;
4
- description?: string;
5
- valueHint?: string;
6
- alias?: string | string[];
7
- default?: VT;
8
- required?: boolean;
9
- };
10
- type BooleanArgDef = _ArgDef<"boolean", boolean>;
11
- type StringArgDef = _ArgDef<"string", string>;
12
- type PositionalArgDef = Omit<_ArgDef<"positional", string>, "alias">;
13
- type ArgDef = BooleanArgDef | StringArgDef | PositionalArgDef;
14
- type ArgsDef = Record<string, ArgDef>;
15
- type Arg = ArgDef & {
16
- name: string;
17
- alias: string[];
18
- };
19
- type ParsedArgs<T extends ArgsDef = ArgsDef> = {
20
- _: string[];
21
- } & Record<{
22
- [K in keyof T]: T[K] extends {
23
- type: "positional";
24
- } ? K : never;
25
- }[keyof T], string> & Record<{
26
- [K in keyof T]: T[K] extends {
27
- type: "string";
28
- } ? K : never;
29
- }[keyof T], string> & Record<{
30
- [K in keyof T]: T[K] extends {
31
- type: "boolean";
32
- } ? K : never;
33
- }[keyof T], boolean> & Record<string, string | boolean | string[]>;
34
- interface CommandMeta {
35
- name?: string;
36
- version?: string;
37
- description?: string;
38
- }
39
- type SubCommandsDef = Record<string, Resolvable<CommandDef<any>>>;
40
- type CommandDef<T extends ArgsDef = ArgsDef> = {
41
- meta?: Resolvable<CommandMeta>;
42
- args?: Resolvable<T>;
43
- subCommands?: Resolvable<SubCommandsDef>;
44
- setup?: (context: CommandContext<T>) => any | Promise<any>;
45
- cleanup?: (context: CommandContext<T>) => any | Promise<any>;
46
- run?: (context: CommandContext<T>) => any | Promise<any>;
47
- };
48
- type CommandContext<T extends ArgsDef = ArgsDef> = {
49
- rawArgs: string[];
50
- args: ParsedArgs<T>;
51
- cmd: CommandDef<T>;
52
- subCommand?: CommandDef<T>;
53
- data?: any;
54
- };
55
- type Awaitable<T> = () => T | Promise<T>;
56
- type Resolvable<T> = T | Promise<T> | (() => T) | (() => Promise<T>);
57
-
58
- declare function defineCommand<T extends ArgsDef = ArgsDef>(def: CommandDef<T>): CommandDef<T>;
59
- interface RunCommandOptions {
60
- rawArgs: string[];
61
- data?: any;
62
- showUsage?: boolean;
63
- }
64
- declare function runCommand<T extends ArgsDef = ArgsDef>(cmd: CommandDef<T>, opts: RunCommandOptions): Promise<{
65
- result: unknown;
66
- }>;
67
-
68
- declare function showUsage<T extends ArgsDef = ArgsDef>(cmd: CommandDef<T>, parent?: CommandDef<T>): Promise<void>;
69
- declare function renderUsage<T extends ArgsDef = ArgsDef>(cmd: CommandDef<T>, parent?: CommandDef<T>): Promise<string>;
70
-
71
- interface RunMainOptions {
72
- rawArgs?: string[];
73
- showUsage?: typeof showUsage;
74
- }
75
- declare function runMain<T extends ArgsDef = ArgsDef>(cmd: CommandDef<T>, opts?: RunMainOptions): Promise<void>;
76
- declare function createMain<T extends ArgsDef = ArgsDef>(cmd: CommandDef<T>): (opts?: RunMainOptions) => Promise<void>;
77
-
78
- declare function parseArgs<T extends ArgsDef = ArgsDef>(rawArgs: string[], argsDef: ArgsDef): ParsedArgs<T>;
79
-
80
- export { type Arg, type ArgDef, type ArgType, type ArgsDef, type Awaitable, type BooleanArgDef, type CommandContext, type CommandDef, type CommandMeta, type ParsedArgs, type PositionalArgDef, type Resolvable, type RunCommandOptions, type RunMainOptions, type StringArgDef, type SubCommandsDef, type _ArgDef, createMain, defineCommand, parseArgs, renderUsage, runCommand, runMain, showUsage };