massarg 2.0.0-pre.1 → 2.0.0-pre.10

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/help.d.ts CHANGED
@@ -2,10 +2,11 @@ import z from 'zod';
2
2
  import { MassargCommand } from './command';
3
3
  import { DeepRequired } from './utils';
4
4
  export declare const GenerateTableCommandConfig: z.ZodObject<{
5
- maxRowLength: z.ZodOptional<z.ZodNumber>;
6
- namePrefix: z.ZodOptional<z.ZodString>;
7
- aliasPrefix: z.ZodOptional<z.ZodString>;
5
+ /** Length of each row in the table */
6
+ lineLength: z.ZodOptional<z.ZodNumber>;
7
+ /** When `false`, each row is separated by a blank line */
8
8
  compact: z.ZodOptional<z.ZodBoolean>;
9
+ /** Style of the command/option name */
9
10
  nameStyle: z.ZodOptional<z.ZodObject<{
10
11
  bold: z.ZodOptional<z.ZodBoolean>;
11
12
  underline: z.ZodOptional<z.ZodBoolean>;
@@ -22,6 +23,7 @@ export declare const GenerateTableCommandConfig: z.ZodObject<{
22
23
  color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
23
24
  reset?: boolean | undefined;
24
25
  }>>;
26
+ /** Style of the command/option description */
25
27
  descriptionStyle: z.ZodOptional<z.ZodObject<{
26
28
  bold: z.ZodOptional<z.ZodBoolean>;
27
29
  underline: z.ZodOptional<z.ZodBoolean>;
@@ -38,10 +40,12 @@ export declare const GenerateTableCommandConfig: z.ZodObject<{
38
40
  color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
39
41
  reset?: boolean | undefined;
40
42
  }>>;
43
+ /** Prefix for the command/option name (default is the command's prefix) */
44
+ namePrefix: z.ZodOptional<z.ZodString>;
45
+ /** Prefix for the command/option aliases (default is the command's prefix) */
46
+ aliasPrefix: z.ZodOptional<z.ZodString>;
41
47
  }, "strip", z.ZodTypeAny, {
42
- maxRowLength?: number | undefined;
43
- namePrefix?: string | undefined;
44
- aliasPrefix?: string | undefined;
48
+ lineLength?: number | undefined;
45
49
  compact?: boolean | undefined;
46
50
  nameStyle?: {
47
51
  bold?: boolean | undefined;
@@ -55,10 +59,10 @@ export declare const GenerateTableCommandConfig: z.ZodObject<{
55
59
  color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
56
60
  reset?: boolean | undefined;
57
61
  } | undefined;
58
- }, {
59
- maxRowLength?: number | undefined;
60
62
  namePrefix?: string | undefined;
61
63
  aliasPrefix?: string | undefined;
64
+ }, {
65
+ lineLength?: number | undefined;
62
66
  compact?: boolean | undefined;
63
67
  nameStyle?: {
64
68
  bold?: boolean | undefined;
@@ -72,12 +76,13 @@ export declare const GenerateTableCommandConfig: z.ZodObject<{
72
76
  color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
73
77
  reset?: boolean | undefined;
74
78
  } | undefined;
79
+ namePrefix?: string | undefined;
80
+ aliasPrefix?: string | undefined;
75
81
  }>;
76
82
  export type GenerateTableCommandConfig = z.infer<typeof GenerateTableCommandConfig>;
77
83
  export declare const GenerateTableOptionConfig: z.ZodObject<{
78
- maxRowLength: z.ZodOptional<z.ZodNumber>;
79
- namePrefix: z.ZodOptional<z.ZodString>;
80
84
  aliasPrefix: z.ZodOptional<z.ZodString>;
85
+ lineLength: z.ZodOptional<z.ZodNumber>;
81
86
  compact: z.ZodOptional<z.ZodBoolean>;
82
87
  nameStyle: z.ZodOptional<z.ZodObject<{
83
88
  bold: z.ZodOptional<z.ZodBoolean>;
@@ -111,10 +116,13 @@ export declare const GenerateTableOptionConfig: z.ZodObject<{
111
116
  color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
112
117
  reset?: boolean | undefined;
113
118
  }>>;
119
+ namePrefix: z.ZodOptional<z.ZodString>;
120
+ negatePrefix: z.ZodOptional<z.ZodString>;
121
+ negateAliasPrefix: z.ZodOptional<z.ZodString>;
122
+ displayNegations: z.ZodOptional<z.ZodBoolean>;
114
123
  }, "strip", z.ZodTypeAny, {
115
- maxRowLength?: number | undefined;
116
- namePrefix?: string | undefined;
117
124
  aliasPrefix?: string | undefined;
125
+ lineLength?: number | undefined;
118
126
  compact?: boolean | undefined;
119
127
  nameStyle?: {
120
128
  bold?: boolean | undefined;
@@ -128,10 +136,13 @@ export declare const GenerateTableOptionConfig: z.ZodObject<{
128
136
  color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
129
137
  reset?: boolean | undefined;
130
138
  } | undefined;
131
- }, {
132
- maxRowLength?: number | undefined;
133
139
  namePrefix?: string | undefined;
140
+ negatePrefix?: string | undefined;
141
+ negateAliasPrefix?: string | undefined;
142
+ displayNegations?: boolean | undefined;
143
+ }, {
134
144
  aliasPrefix?: string | undefined;
145
+ lineLength?: number | undefined;
135
146
  compact?: boolean | undefined;
136
147
  nameStyle?: {
137
148
  bold?: boolean | undefined;
@@ -145,6 +156,10 @@ export declare const GenerateTableOptionConfig: z.ZodObject<{
145
156
  color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
146
157
  reset?: boolean | undefined;
147
158
  } | undefined;
159
+ namePrefix?: string | undefined;
160
+ negatePrefix?: string | undefined;
161
+ negateAliasPrefix?: string | undefined;
162
+ displayNegations?: boolean | undefined;
148
163
  }>;
149
164
  export type GenerateTableOptionConfig = z.infer<typeof GenerateTableOptionConfig>;
150
165
  export declare const HelpConfig: z.ZodObject<{
@@ -160,12 +175,15 @@ export declare const HelpConfig: z.ZodObject<{
160
175
  * Set this to `true` to automatically add a `--help` option to this command's options.
161
176
  */
162
177
  bindOption: z.ZodOptional<z.ZodBoolean>;
178
+ /** Whether to align all tables to the column widths, or have each table be independent. Default is `true` */
179
+ useGlobalTableColumns: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
163
180
  /** Options for generating the table of commands */
164
181
  commandOptions: z.ZodOptional<z.ZodObject<Omit<{
165
- maxRowLength: z.ZodOptional<z.ZodNumber>;
166
- namePrefix: z.ZodOptional<z.ZodString>;
167
- aliasPrefix: z.ZodOptional<z.ZodString>;
182
+ /** Length of each row in the table */
183
+ lineLength: z.ZodOptional<z.ZodNumber>;
184
+ /** When `false`, each row is separated by a blank line */
168
185
  compact: z.ZodOptional<z.ZodBoolean>;
186
+ /** Style of the command/option name */
169
187
  nameStyle: z.ZodOptional<z.ZodObject<{
170
188
  bold: z.ZodOptional<z.ZodBoolean>;
171
189
  underline: z.ZodOptional<z.ZodBoolean>;
@@ -182,6 +200,7 @@ export declare const HelpConfig: z.ZodObject<{
182
200
  color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
183
201
  reset?: boolean | undefined;
184
202
  }>>;
203
+ /** Style of the command/option description */
185
204
  descriptionStyle: z.ZodOptional<z.ZodObject<{
186
205
  bold: z.ZodOptional<z.ZodBoolean>;
187
206
  underline: z.ZodOptional<z.ZodBoolean>;
@@ -198,8 +217,11 @@ export declare const HelpConfig: z.ZodObject<{
198
217
  color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
199
218
  reset?: boolean | undefined;
200
219
  }>>;
201
- }, "maxRowLength">, "strip", z.ZodTypeAny, {
202
- namePrefix?: string | undefined;
220
+ /** Prefix for the command/option name (default is the command's prefix) */
221
+ namePrefix: z.ZodOptional<z.ZodString>;
222
+ /** Prefix for the command/option aliases (default is the command's prefix) */
223
+ aliasPrefix: z.ZodOptional<z.ZodString>;
224
+ }, "lineLength">, "strip", z.ZodTypeAny, {
203
225
  aliasPrefix?: string | undefined;
204
226
  compact?: boolean | undefined;
205
227
  nameStyle?: {
@@ -214,8 +236,8 @@ export declare const HelpConfig: z.ZodObject<{
214
236
  color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
215
237
  reset?: boolean | undefined;
216
238
  } | undefined;
217
- }, {
218
239
  namePrefix?: string | undefined;
240
+ }, {
219
241
  aliasPrefix?: string | undefined;
220
242
  compact?: boolean | undefined;
221
243
  nameStyle?: {
@@ -230,12 +252,12 @@ export declare const HelpConfig: z.ZodObject<{
230
252
  color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
231
253
  reset?: boolean | undefined;
232
254
  } | undefined;
255
+ namePrefix?: string | undefined;
233
256
  }>>;
234
257
  /** Options for generating the table of options */
235
258
  optionOptions: z.ZodOptional<z.ZodObject<Omit<{
236
- maxRowLength: z.ZodOptional<z.ZodNumber>;
237
- namePrefix: z.ZodOptional<z.ZodString>;
238
259
  aliasPrefix: z.ZodOptional<z.ZodString>;
260
+ lineLength: z.ZodOptional<z.ZodNumber>;
239
261
  compact: z.ZodOptional<z.ZodBoolean>;
240
262
  nameStyle: z.ZodOptional<z.ZodObject<{
241
263
  bold: z.ZodOptional<z.ZodBoolean>;
@@ -269,9 +291,13 @@ export declare const HelpConfig: z.ZodObject<{
269
291
  color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
270
292
  reset?: boolean | undefined;
271
293
  }>>;
272
- }, "maxRowLength">, "strip", z.ZodTypeAny, {
273
- namePrefix?: string | undefined;
294
+ namePrefix: z.ZodOptional<z.ZodString>;
295
+ negatePrefix: z.ZodOptional<z.ZodString>;
296
+ negateAliasPrefix: z.ZodOptional<z.ZodString>;
297
+ displayNegations: z.ZodOptional<z.ZodBoolean>;
298
+ }, "lineLength">, "strip", z.ZodTypeAny, {
274
299
  aliasPrefix?: string | undefined;
300
+ negateAliasPrefix?: string | undefined;
275
301
  compact?: boolean | undefined;
276
302
  nameStyle?: {
277
303
  bold?: boolean | undefined;
@@ -285,9 +311,12 @@ export declare const HelpConfig: z.ZodObject<{
285
311
  color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
286
312
  reset?: boolean | undefined;
287
313
  } | undefined;
288
- }, {
289
314
  namePrefix?: string | undefined;
315
+ negatePrefix?: string | undefined;
316
+ displayNegations?: boolean | undefined;
317
+ }, {
290
318
  aliasPrefix?: string | undefined;
319
+ negateAliasPrefix?: string | undefined;
291
320
  compact?: boolean | undefined;
292
321
  nameStyle?: {
293
322
  bold?: boolean | undefined;
@@ -301,6 +330,9 @@ export declare const HelpConfig: z.ZodObject<{
301
330
  color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
302
331
  reset?: boolean | undefined;
303
332
  } | undefined;
333
+ namePrefix?: string | undefined;
334
+ negatePrefix?: string | undefined;
335
+ displayNegations?: boolean | undefined;
304
336
  }>>;
305
337
  /** Style of the help title */
306
338
  titleStyle: z.ZodOptional<z.ZodObject<{
@@ -355,20 +387,127 @@ export declare const HelpConfig: z.ZodObject<{
355
387
  }>>;
356
388
  /** Style of the help usage */
357
389
  usageStyle: z.ZodOptional<z.ZodObject<{
358
- bold: z.ZodOptional<z.ZodBoolean>;
359
- underline: z.ZodOptional<z.ZodBoolean>;
360
- color: z.ZodOptional<z.ZodEnum<["red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite", ...("red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite")[]]>>;
361
- reset: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
390
+ /** Style of the help usage title - appears before the usage text (custom or auto) */
391
+ prefix: z.ZodOptional<z.ZodObject<{
392
+ bold: z.ZodOptional<z.ZodBoolean>;
393
+ underline: z.ZodOptional<z.ZodBoolean>;
394
+ color: z.ZodOptional<z.ZodEnum<["red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite", ...("red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite")[]]>>;
395
+ reset: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
396
+ }, "strip", z.ZodTypeAny, {
397
+ bold?: boolean | undefined;
398
+ underline?: boolean | undefined;
399
+ color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
400
+ reset?: boolean | undefined;
401
+ }, {
402
+ bold?: boolean | undefined;
403
+ underline?: boolean | undefined;
404
+ color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
405
+ reset?: boolean | undefined;
406
+ }>>;
407
+ /**
408
+ * For custom usage text, this is the primary style used (right after the `prefix` style).
409
+ * For automated usage text, this style is used for the command/binary name
410
+ */
411
+ main: z.ZodOptional<z.ZodObject<{
412
+ bold: z.ZodOptional<z.ZodBoolean>;
413
+ underline: z.ZodOptional<z.ZodBoolean>;
414
+ color: z.ZodOptional<z.ZodEnum<["red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite", ...("red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite")[]]>>;
415
+ reset: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
416
+ }, "strip", z.ZodTypeAny, {
417
+ bold?: boolean | undefined;
418
+ underline?: boolean | undefined;
419
+ color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
420
+ reset?: boolean | undefined;
421
+ }, {
422
+ bold?: boolean | undefined;
423
+ underline?: boolean | undefined;
424
+ color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
425
+ reset?: boolean | undefined;
426
+ }>>;
427
+ /** Style of the help usage commands (if any) */
428
+ command: z.ZodOptional<z.ZodObject<{
429
+ bold: z.ZodOptional<z.ZodBoolean>;
430
+ underline: z.ZodOptional<z.ZodBoolean>;
431
+ color: z.ZodOptional<z.ZodEnum<["red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite", ...("red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite")[]]>>;
432
+ reset: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
433
+ }, "strip", z.ZodTypeAny, {
434
+ bold?: boolean | undefined;
435
+ underline?: boolean | undefined;
436
+ color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
437
+ reset?: boolean | undefined;
438
+ }, {
439
+ bold?: boolean | undefined;
440
+ underline?: boolean | undefined;
441
+ color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
442
+ reset?: boolean | undefined;
443
+ }>>;
444
+ /** Style of the help usage options (if any) */
445
+ options: z.ZodOptional<z.ZodObject<{
446
+ bold: z.ZodOptional<z.ZodBoolean>;
447
+ underline: z.ZodOptional<z.ZodBoolean>;
448
+ color: z.ZodOptional<z.ZodEnum<["red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite", ...("red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite")[]]>>;
449
+ reset: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
450
+ }, "strip", z.ZodTypeAny, {
451
+ bold?: boolean | undefined;
452
+ underline?: boolean | undefined;
453
+ color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
454
+ reset?: boolean | undefined;
455
+ }, {
456
+ bold?: boolean | undefined;
457
+ underline?: boolean | undefined;
458
+ color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
459
+ reset?: boolean | undefined;
460
+ }>>;
362
461
  }, "strip", z.ZodTypeAny, {
363
- bold?: boolean | undefined;
364
- underline?: boolean | undefined;
365
- color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
366
- reset?: boolean | undefined;
462
+ prefix?: {
463
+ bold?: boolean | undefined;
464
+ underline?: boolean | undefined;
465
+ color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
466
+ reset?: boolean | undefined;
467
+ } | undefined;
468
+ main?: {
469
+ bold?: boolean | undefined;
470
+ underline?: boolean | undefined;
471
+ color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
472
+ reset?: boolean | undefined;
473
+ } | undefined;
474
+ command?: {
475
+ bold?: boolean | undefined;
476
+ underline?: boolean | undefined;
477
+ color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
478
+ reset?: boolean | undefined;
479
+ } | undefined;
480
+ options?: {
481
+ bold?: boolean | undefined;
482
+ underline?: boolean | undefined;
483
+ color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
484
+ reset?: boolean | undefined;
485
+ } | undefined;
367
486
  }, {
368
- bold?: boolean | undefined;
369
- underline?: boolean | undefined;
370
- color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
371
- reset?: boolean | undefined;
487
+ prefix?: {
488
+ bold?: boolean | undefined;
489
+ underline?: boolean | undefined;
490
+ color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
491
+ reset?: boolean | undefined;
492
+ } | undefined;
493
+ main?: {
494
+ bold?: boolean | undefined;
495
+ underline?: boolean | undefined;
496
+ color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
497
+ reset?: boolean | undefined;
498
+ } | undefined;
499
+ command?: {
500
+ bold?: boolean | undefined;
501
+ underline?: boolean | undefined;
502
+ color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
503
+ reset?: boolean | undefined;
504
+ } | undefined;
505
+ options?: {
506
+ bold?: boolean | undefined;
507
+ underline?: boolean | undefined;
508
+ color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
509
+ reset?: boolean | undefined;
510
+ } | undefined;
372
511
  }>>;
373
512
  /** Style of the help header */
374
513
  headerStyle: z.ZodOptional<z.ZodObject<{
@@ -405,7 +544,7 @@ export declare const HelpConfig: z.ZodObject<{
405
544
  reset?: boolean | undefined;
406
545
  }>>;
407
546
  /** Maximum length of a row in the help output */
408
- maxRowLength: z.ZodOptional<z.ZodNumber>;
547
+ lineLength: z.ZodOptional<z.ZodNumber>;
409
548
  /** Options for examples section */
410
549
  exampleOptions: z.ZodOptional<z.ZodObject<{
411
550
  /** Style of the example description */
@@ -459,10 +598,29 @@ export declare const HelpConfig: z.ZodObject<{
459
598
  color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
460
599
  reset?: boolean | undefined;
461
600
  }>>;
462
- /** Prefix for the example input */
601
+ /** Prefix for the example input (default: `$`) */
463
602
  inputPrefix: z.ZodOptional<z.ZodDefault<z.ZodString>>;
464
- /** Prefix for the example output */
603
+ /** Prefix for the example output (default: `>`) */
465
604
  outputPrefix: z.ZodOptional<z.ZodDefault<z.ZodString>>;
605
+ /** Style of the example input/output prefixes */
606
+ prefixStyle: z.ZodOptional<z.ZodObject<{
607
+ bold: z.ZodOptional<z.ZodBoolean>;
608
+ underline: z.ZodOptional<z.ZodBoolean>;
609
+ color: z.ZodOptional<z.ZodEnum<["red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite", ...("red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite")[]]>>;
610
+ reset: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
611
+ }, "strip", z.ZodTypeAny, {
612
+ bold?: boolean | undefined;
613
+ underline?: boolean | undefined;
614
+ color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
615
+ reset?: boolean | undefined;
616
+ }, {
617
+ bold?: boolean | undefined;
618
+ underline?: boolean | undefined;
619
+ color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
620
+ reset?: boolean | undefined;
621
+ }>>;
622
+ /** Whether to compact the examples section */
623
+ compact: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
466
624
  }, "strip", z.ZodTypeAny, {
467
625
  descriptionStyle?: {
468
626
  bold?: boolean | undefined;
@@ -484,6 +642,13 @@ export declare const HelpConfig: z.ZodObject<{
484
642
  } | undefined;
485
643
  inputPrefix?: string | undefined;
486
644
  outputPrefix?: string | undefined;
645
+ prefixStyle?: {
646
+ bold?: boolean | undefined;
647
+ underline?: boolean | undefined;
648
+ color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
649
+ reset?: boolean | undefined;
650
+ } | undefined;
651
+ compact?: boolean | undefined;
487
652
  }, {
488
653
  descriptionStyle?: {
489
654
  bold?: boolean | undefined;
@@ -505,6 +670,13 @@ export declare const HelpConfig: z.ZodObject<{
505
670
  } | undefined;
506
671
  inputPrefix?: string | undefined;
507
672
  outputPrefix?: string | undefined;
673
+ prefixStyle?: {
674
+ bold?: boolean | undefined;
675
+ underline?: boolean | undefined;
676
+ color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
677
+ reset?: boolean | undefined;
678
+ } | undefined;
679
+ compact?: boolean | undefined;
508
680
  }>>;
509
681
  /** Text to display at the very top, describing CLI usage */
510
682
  usageText: z.ZodOptional<z.ZodString>;
@@ -515,8 +687,8 @@ export declare const HelpConfig: z.ZodObject<{
515
687
  }, "strip", z.ZodTypeAny, {
516
688
  bindCommand?: boolean | undefined;
517
689
  bindOption?: boolean | undefined;
690
+ useGlobalTableColumns?: boolean | undefined;
518
691
  commandOptions?: {
519
- namePrefix?: string | undefined;
520
692
  aliasPrefix?: string | undefined;
521
693
  compact?: boolean | undefined;
522
694
  nameStyle?: {
@@ -531,10 +703,11 @@ export declare const HelpConfig: z.ZodObject<{
531
703
  color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
532
704
  reset?: boolean | undefined;
533
705
  } | undefined;
706
+ namePrefix?: string | undefined;
534
707
  } | undefined;
535
708
  optionOptions?: {
536
- namePrefix?: string | undefined;
537
709
  aliasPrefix?: string | undefined;
710
+ negateAliasPrefix?: string | undefined;
538
711
  compact?: boolean | undefined;
539
712
  nameStyle?: {
540
713
  bold?: boolean | undefined;
@@ -548,6 +721,9 @@ export declare const HelpConfig: z.ZodObject<{
548
721
  color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
549
722
  reset?: boolean | undefined;
550
723
  } | undefined;
724
+ namePrefix?: string | undefined;
725
+ negatePrefix?: string | undefined;
726
+ displayNegations?: boolean | undefined;
551
727
  } | undefined;
552
728
  titleStyle?: {
553
729
  bold?: boolean | undefined;
@@ -568,10 +744,30 @@ export declare const HelpConfig: z.ZodObject<{
568
744
  reset?: boolean | undefined;
569
745
  } | undefined;
570
746
  usageStyle?: {
571
- bold?: boolean | undefined;
572
- underline?: boolean | undefined;
573
- color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
574
- reset?: boolean | undefined;
747
+ prefix?: {
748
+ bold?: boolean | undefined;
749
+ underline?: boolean | undefined;
750
+ color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
751
+ reset?: boolean | undefined;
752
+ } | undefined;
753
+ main?: {
754
+ bold?: boolean | undefined;
755
+ underline?: boolean | undefined;
756
+ color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
757
+ reset?: boolean | undefined;
758
+ } | undefined;
759
+ command?: {
760
+ bold?: boolean | undefined;
761
+ underline?: boolean | undefined;
762
+ color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
763
+ reset?: boolean | undefined;
764
+ } | undefined;
765
+ options?: {
766
+ bold?: boolean | undefined;
767
+ underline?: boolean | undefined;
768
+ color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
769
+ reset?: boolean | undefined;
770
+ } | undefined;
575
771
  } | undefined;
576
772
  headerStyle?: {
577
773
  bold?: boolean | undefined;
@@ -585,7 +781,7 @@ export declare const HelpConfig: z.ZodObject<{
585
781
  color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
586
782
  reset?: boolean | undefined;
587
783
  } | undefined;
588
- maxRowLength?: number | undefined;
784
+ lineLength?: number | undefined;
589
785
  exampleOptions?: {
590
786
  descriptionStyle?: {
591
787
  bold?: boolean | undefined;
@@ -607,6 +803,13 @@ export declare const HelpConfig: z.ZodObject<{
607
803
  } | undefined;
608
804
  inputPrefix?: string | undefined;
609
805
  outputPrefix?: string | undefined;
806
+ prefixStyle?: {
807
+ bold?: boolean | undefined;
808
+ underline?: boolean | undefined;
809
+ color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
810
+ reset?: boolean | undefined;
811
+ } | undefined;
812
+ compact?: boolean | undefined;
610
813
  } | undefined;
611
814
  usageText?: string | undefined;
612
815
  headerText?: string | undefined;
@@ -614,8 +817,8 @@ export declare const HelpConfig: z.ZodObject<{
614
817
  }, {
615
818
  bindCommand?: boolean | undefined;
616
819
  bindOption?: boolean | undefined;
820
+ useGlobalTableColumns?: boolean | undefined;
617
821
  commandOptions?: {
618
- namePrefix?: string | undefined;
619
822
  aliasPrefix?: string | undefined;
620
823
  compact?: boolean | undefined;
621
824
  nameStyle?: {
@@ -630,10 +833,11 @@ export declare const HelpConfig: z.ZodObject<{
630
833
  color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
631
834
  reset?: boolean | undefined;
632
835
  } | undefined;
836
+ namePrefix?: string | undefined;
633
837
  } | undefined;
634
838
  optionOptions?: {
635
- namePrefix?: string | undefined;
636
839
  aliasPrefix?: string | undefined;
840
+ negateAliasPrefix?: string | undefined;
637
841
  compact?: boolean | undefined;
638
842
  nameStyle?: {
639
843
  bold?: boolean | undefined;
@@ -647,6 +851,9 @@ export declare const HelpConfig: z.ZodObject<{
647
851
  color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
648
852
  reset?: boolean | undefined;
649
853
  } | undefined;
854
+ namePrefix?: string | undefined;
855
+ negatePrefix?: string | undefined;
856
+ displayNegations?: boolean | undefined;
650
857
  } | undefined;
651
858
  titleStyle?: {
652
859
  bold?: boolean | undefined;
@@ -667,10 +874,30 @@ export declare const HelpConfig: z.ZodObject<{
667
874
  reset?: boolean | undefined;
668
875
  } | undefined;
669
876
  usageStyle?: {
670
- bold?: boolean | undefined;
671
- underline?: boolean | undefined;
672
- color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
673
- reset?: boolean | undefined;
877
+ prefix?: {
878
+ bold?: boolean | undefined;
879
+ underline?: boolean | undefined;
880
+ color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
881
+ reset?: boolean | undefined;
882
+ } | undefined;
883
+ main?: {
884
+ bold?: boolean | undefined;
885
+ underline?: boolean | undefined;
886
+ color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
887
+ reset?: boolean | undefined;
888
+ } | undefined;
889
+ command?: {
890
+ bold?: boolean | undefined;
891
+ underline?: boolean | undefined;
892
+ color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
893
+ reset?: boolean | undefined;
894
+ } | undefined;
895
+ options?: {
896
+ bold?: boolean | undefined;
897
+ underline?: boolean | undefined;
898
+ color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
899
+ reset?: boolean | undefined;
900
+ } | undefined;
674
901
  } | undefined;
675
902
  headerStyle?: {
676
903
  bold?: boolean | undefined;
@@ -684,7 +911,7 @@ export declare const HelpConfig: z.ZodObject<{
684
911
  color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
685
912
  reset?: boolean | undefined;
686
913
  } | undefined;
687
- maxRowLength?: number | undefined;
914
+ lineLength?: number | undefined;
688
915
  exampleOptions?: {
689
916
  descriptionStyle?: {
690
917
  bold?: boolean | undefined;
@@ -706,6 +933,13 @@ export declare const HelpConfig: z.ZodObject<{
706
933
  } | undefined;
707
934
  inputPrefix?: string | undefined;
708
935
  outputPrefix?: string | undefined;
936
+ prefixStyle?: {
937
+ bold?: boolean | undefined;
938
+ underline?: boolean | undefined;
939
+ color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
940
+ reset?: boolean | undefined;
941
+ } | undefined;
942
+ compact?: boolean | undefined;
709
943
  } | undefined;
710
944
  usageText?: string | undefined;
711
945
  headerText?: string | undefined;
@@ -718,6 +952,7 @@ export type HelpItem = {
718
952
  aliases: string[];
719
953
  description: string;
720
954
  hidden?: boolean;
955
+ negatable?: boolean;
721
956
  };
722
957
  export declare class HelpGenerator {
723
958
  entry: MassargCommand<any>;
package/help.d.ts.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"help.d.ts","sourceRoot":"","sources":["../src/help.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAA;AAEnB,OAAO,EAAE,cAAc,EAAE,MAAM,WAAW,CAAA;AAC1C,OAAO,EAAE,YAAY,EAAqB,MAAM,SAAS,CAAA;AAEzD,eAAO,MAAM,0BAA0B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAOrC,CAAA;AACF,MAAM,MAAM,0BAA0B,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,0BAA0B,CAAC,CAAA;AAEnF,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAA6B,CAAA;AACnE,MAAM,MAAM,yBAAyB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,yBAAyB,CAAC,CAAA;AAEjF,eAAO,MAAM,UAAU;IACrB;;;;OAIG;;IAEH;;;;OAIG;;IAGH,mDAAmD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAEnD,kDAAkD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAElD,8BAA8B;;;;;;;;;;;;;;;;;IAE9B,oCAAoC;;;;;;;;;;;;;;;;;IAEpC,qEAAqE;;;;;;;;;;;;;;;;;IAErE,8BAA8B;;;;;;;;;;;;;;;;;IAE9B,+BAA+B;;;;;;;;;;;;;;;;;IAE/B,+BAA+B;;;;;;;;;;;;;;;;;IAE/B,iDAAiD;;IAEjD,mCAAmC;;QAG/B,uCAAuC;;;;;;;;;;;;;;;;;QAEvC,iCAAiC;;;;;;;;;;;;;;;;;QAEjC,kCAAkC;;;;;;;;;;;;;;;;;QAElC,mCAAmC;;QAEnC,oCAAoC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAIxC,4DAA4D;;IAE5D,6DAA6D;;IAE7D,6DAA6D;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAE7D,CAAA;AAEF,MAAM,MAAM,UAAU,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,UAAU,CAAC,CAAA;AAEnD,eAAO,MAAM,iBAAiB,EAAE,YAAY,CAAC,UAAU,CAyDtD,CAAA;AAED,MAAM,MAAM,QAAQ,GAAG;IACrB,IAAI,EAAE,MAAM,CAAA;IACZ,OAAO,EAAE,MAAM,EAAE,CAAA;IACjB,WAAW,EAAE,MAAM,CAAA;IACnB,MAAM,CAAC,EAAE,OAAO,CAAA;CACjB,CAAA;AAED,qBAAa,aAAa;IACxB,KAAK,EAAE,cAAc,CAAC,GAAG,CAAC,CAAA;IAC1B,MAAM,EAAE,YAAY,CAAC,UAAU,CAAC,CAAA;gBAEpB,KAAK,EAAE,cAAc,CAAC,GAAG,CAAC,EAAE,MAAM,CAAC,EAAE,UAAU;IAe3D,QAAQ,IAAI,MAAM;IA8ElB,SAAS,IAAI,IAAI;CAGlB"}
1
+ {"version":3,"file":"help.d.ts","sourceRoot":"","sources":["../src/help.ts"],"names":[],"mappings":"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"}