massarg 1.0.7-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 ADDED
@@ -0,0 +1,964 @@
1
+ import z from 'zod';
2
+ import { MassargCommand } from './command';
3
+ import { DeepRequired } from './utils';
4
+ export declare const GenerateTableCommandConfig: z.ZodObject<{
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
+ compact: z.ZodOptional<z.ZodBoolean>;
9
+ /** Style of the command/option name */
10
+ nameStyle: z.ZodOptional<z.ZodObject<{
11
+ bold: z.ZodOptional<z.ZodBoolean>;
12
+ underline: z.ZodOptional<z.ZodBoolean>;
13
+ 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")[]]>>;
14
+ reset: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
15
+ }, "strip", z.ZodTypeAny, {
16
+ bold?: boolean | undefined;
17
+ underline?: boolean | undefined;
18
+ color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
19
+ reset?: boolean | undefined;
20
+ }, {
21
+ bold?: boolean | undefined;
22
+ underline?: boolean | undefined;
23
+ color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
24
+ reset?: boolean | undefined;
25
+ }>>;
26
+ /** Style of the command/option description */
27
+ descriptionStyle: z.ZodOptional<z.ZodObject<{
28
+ bold: z.ZodOptional<z.ZodBoolean>;
29
+ underline: z.ZodOptional<z.ZodBoolean>;
30
+ 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")[]]>>;
31
+ reset: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
32
+ }, "strip", z.ZodTypeAny, {
33
+ bold?: boolean | undefined;
34
+ underline?: boolean | undefined;
35
+ color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
36
+ reset?: boolean | undefined;
37
+ }, {
38
+ bold?: boolean | undefined;
39
+ underline?: boolean | undefined;
40
+ color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
41
+ reset?: boolean | undefined;
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>;
47
+ }, "strip", z.ZodTypeAny, {
48
+ lineLength?: number | undefined;
49
+ compact?: boolean | undefined;
50
+ nameStyle?: {
51
+ bold?: boolean | undefined;
52
+ underline?: boolean | undefined;
53
+ color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
54
+ reset?: boolean | undefined;
55
+ } | undefined;
56
+ descriptionStyle?: {
57
+ bold?: boolean | undefined;
58
+ underline?: boolean | undefined;
59
+ color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
60
+ reset?: boolean | undefined;
61
+ } | undefined;
62
+ namePrefix?: string | undefined;
63
+ aliasPrefix?: string | undefined;
64
+ }, {
65
+ lineLength?: number | undefined;
66
+ compact?: boolean | undefined;
67
+ nameStyle?: {
68
+ bold?: boolean | undefined;
69
+ underline?: boolean | undefined;
70
+ color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
71
+ reset?: boolean | undefined;
72
+ } | undefined;
73
+ descriptionStyle?: {
74
+ bold?: boolean | undefined;
75
+ underline?: boolean | undefined;
76
+ color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
77
+ reset?: boolean | undefined;
78
+ } | undefined;
79
+ namePrefix?: string | undefined;
80
+ aliasPrefix?: string | undefined;
81
+ }>;
82
+ export type GenerateTableCommandConfig = z.infer<typeof GenerateTableCommandConfig>;
83
+ export declare const GenerateTableOptionConfig: z.ZodObject<{
84
+ aliasPrefix: z.ZodOptional<z.ZodString>;
85
+ lineLength: z.ZodOptional<z.ZodNumber>;
86
+ compact: z.ZodOptional<z.ZodBoolean>;
87
+ nameStyle: z.ZodOptional<z.ZodObject<{
88
+ bold: z.ZodOptional<z.ZodBoolean>;
89
+ underline: z.ZodOptional<z.ZodBoolean>;
90
+ 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")[]]>>;
91
+ reset: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
92
+ }, "strip", z.ZodTypeAny, {
93
+ bold?: boolean | undefined;
94
+ underline?: boolean | undefined;
95
+ color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
96
+ reset?: boolean | undefined;
97
+ }, {
98
+ bold?: boolean | undefined;
99
+ underline?: boolean | undefined;
100
+ color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
101
+ reset?: boolean | undefined;
102
+ }>>;
103
+ descriptionStyle: z.ZodOptional<z.ZodObject<{
104
+ bold: z.ZodOptional<z.ZodBoolean>;
105
+ underline: z.ZodOptional<z.ZodBoolean>;
106
+ 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")[]]>>;
107
+ reset: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
108
+ }, "strip", z.ZodTypeAny, {
109
+ bold?: boolean | undefined;
110
+ underline?: boolean | undefined;
111
+ color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
112
+ reset?: boolean | undefined;
113
+ }, {
114
+ bold?: boolean | undefined;
115
+ underline?: boolean | undefined;
116
+ color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
117
+ reset?: boolean | undefined;
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>;
123
+ }, "strip", z.ZodTypeAny, {
124
+ aliasPrefix?: string | undefined;
125
+ lineLength?: number | undefined;
126
+ compact?: boolean | undefined;
127
+ nameStyle?: {
128
+ bold?: boolean | undefined;
129
+ underline?: boolean | undefined;
130
+ color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
131
+ reset?: boolean | undefined;
132
+ } | undefined;
133
+ descriptionStyle?: {
134
+ bold?: boolean | undefined;
135
+ underline?: boolean | undefined;
136
+ color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
137
+ reset?: boolean | undefined;
138
+ } | undefined;
139
+ namePrefix?: string | undefined;
140
+ negatePrefix?: string | undefined;
141
+ negateAliasPrefix?: string | undefined;
142
+ displayNegations?: boolean | undefined;
143
+ }, {
144
+ aliasPrefix?: string | undefined;
145
+ lineLength?: number | undefined;
146
+ compact?: boolean | undefined;
147
+ nameStyle?: {
148
+ bold?: boolean | undefined;
149
+ underline?: boolean | undefined;
150
+ color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
151
+ reset?: boolean | undefined;
152
+ } | undefined;
153
+ descriptionStyle?: {
154
+ bold?: boolean | undefined;
155
+ underline?: boolean | undefined;
156
+ color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
157
+ reset?: boolean | undefined;
158
+ } | undefined;
159
+ namePrefix?: string | undefined;
160
+ negatePrefix?: string | undefined;
161
+ negateAliasPrefix?: string | undefined;
162
+ displayNegations?: boolean | undefined;
163
+ }>;
164
+ export type GenerateTableOptionConfig = z.infer<typeof GenerateTableOptionConfig>;
165
+ export declare const HelpConfig: z.ZodObject<{
166
+ /**
167
+ * Whether to bind the help command to this command
168
+ *
169
+ * Set this to `true` to automatically add a `help` command to this command's subcommands.
170
+ */
171
+ bindCommand: z.ZodOptional<z.ZodBoolean>;
172
+ /**
173
+ * Whether to bind the help option to this command
174
+ *
175
+ * Set this to `true` to automatically add a `--help` option to this command's options.
176
+ */
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>>;
180
+ /** Options for generating the table of commands */
181
+ commandOptions: z.ZodOptional<z.ZodObject<Omit<{
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 */
185
+ compact: z.ZodOptional<z.ZodBoolean>;
186
+ /** Style of the command/option name */
187
+ nameStyle: z.ZodOptional<z.ZodObject<{
188
+ bold: z.ZodOptional<z.ZodBoolean>;
189
+ underline: z.ZodOptional<z.ZodBoolean>;
190
+ 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")[]]>>;
191
+ reset: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
192
+ }, "strip", z.ZodTypeAny, {
193
+ bold?: boolean | undefined;
194
+ underline?: boolean | undefined;
195
+ color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
196
+ reset?: boolean | undefined;
197
+ }, {
198
+ bold?: boolean | undefined;
199
+ underline?: boolean | undefined;
200
+ color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
201
+ reset?: boolean | undefined;
202
+ }>>;
203
+ /** Style of the command/option description */
204
+ descriptionStyle: z.ZodOptional<z.ZodObject<{
205
+ bold: z.ZodOptional<z.ZodBoolean>;
206
+ underline: z.ZodOptional<z.ZodBoolean>;
207
+ 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")[]]>>;
208
+ reset: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
209
+ }, "strip", z.ZodTypeAny, {
210
+ bold?: boolean | undefined;
211
+ underline?: boolean | undefined;
212
+ color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
213
+ reset?: boolean | undefined;
214
+ }, {
215
+ bold?: boolean | undefined;
216
+ underline?: boolean | undefined;
217
+ color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
218
+ reset?: boolean | undefined;
219
+ }>>;
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, {
225
+ aliasPrefix?: string | undefined;
226
+ compact?: boolean | undefined;
227
+ nameStyle?: {
228
+ bold?: boolean | undefined;
229
+ underline?: boolean | undefined;
230
+ color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
231
+ reset?: boolean | undefined;
232
+ } | undefined;
233
+ descriptionStyle?: {
234
+ bold?: boolean | undefined;
235
+ underline?: boolean | undefined;
236
+ color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
237
+ reset?: boolean | undefined;
238
+ } | undefined;
239
+ namePrefix?: string | undefined;
240
+ }, {
241
+ aliasPrefix?: string | undefined;
242
+ compact?: boolean | undefined;
243
+ nameStyle?: {
244
+ bold?: boolean | undefined;
245
+ underline?: boolean | undefined;
246
+ color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
247
+ reset?: boolean | undefined;
248
+ } | undefined;
249
+ descriptionStyle?: {
250
+ bold?: boolean | undefined;
251
+ underline?: boolean | undefined;
252
+ color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
253
+ reset?: boolean | undefined;
254
+ } | undefined;
255
+ namePrefix?: string | undefined;
256
+ }>>;
257
+ /** Options for generating the table of options */
258
+ optionOptions: z.ZodOptional<z.ZodObject<Omit<{
259
+ aliasPrefix: z.ZodOptional<z.ZodString>;
260
+ lineLength: z.ZodOptional<z.ZodNumber>;
261
+ compact: z.ZodOptional<z.ZodBoolean>;
262
+ nameStyle: z.ZodOptional<z.ZodObject<{
263
+ bold: z.ZodOptional<z.ZodBoolean>;
264
+ underline: z.ZodOptional<z.ZodBoolean>;
265
+ 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")[]]>>;
266
+ reset: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
267
+ }, "strip", z.ZodTypeAny, {
268
+ bold?: boolean | undefined;
269
+ underline?: boolean | undefined;
270
+ color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
271
+ reset?: boolean | undefined;
272
+ }, {
273
+ bold?: boolean | undefined;
274
+ underline?: boolean | undefined;
275
+ color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
276
+ reset?: boolean | undefined;
277
+ }>>;
278
+ descriptionStyle: z.ZodOptional<z.ZodObject<{
279
+ bold: z.ZodOptional<z.ZodBoolean>;
280
+ underline: z.ZodOptional<z.ZodBoolean>;
281
+ 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")[]]>>;
282
+ reset: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
283
+ }, "strip", z.ZodTypeAny, {
284
+ bold?: boolean | undefined;
285
+ underline?: boolean | undefined;
286
+ color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
287
+ reset?: boolean | undefined;
288
+ }, {
289
+ bold?: boolean | undefined;
290
+ underline?: boolean | undefined;
291
+ color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
292
+ reset?: boolean | undefined;
293
+ }>>;
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, {
299
+ aliasPrefix?: string | undefined;
300
+ negateAliasPrefix?: string | undefined;
301
+ compact?: boolean | undefined;
302
+ nameStyle?: {
303
+ bold?: boolean | undefined;
304
+ underline?: boolean | undefined;
305
+ color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
306
+ reset?: boolean | undefined;
307
+ } | undefined;
308
+ descriptionStyle?: {
309
+ bold?: boolean | undefined;
310
+ underline?: boolean | undefined;
311
+ color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
312
+ reset?: boolean | undefined;
313
+ } | undefined;
314
+ namePrefix?: string | undefined;
315
+ negatePrefix?: string | undefined;
316
+ displayNegations?: boolean | undefined;
317
+ }, {
318
+ aliasPrefix?: string | undefined;
319
+ negateAliasPrefix?: string | undefined;
320
+ compact?: boolean | undefined;
321
+ nameStyle?: {
322
+ bold?: boolean | undefined;
323
+ underline?: boolean | undefined;
324
+ color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
325
+ reset?: boolean | undefined;
326
+ } | undefined;
327
+ descriptionStyle?: {
328
+ bold?: boolean | undefined;
329
+ underline?: boolean | undefined;
330
+ color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
331
+ reset?: boolean | undefined;
332
+ } | undefined;
333
+ namePrefix?: string | undefined;
334
+ negatePrefix?: string | undefined;
335
+ displayNegations?: boolean | undefined;
336
+ }>>;
337
+ /** Style of the help title */
338
+ titleStyle: z.ZodOptional<z.ZodObject<{
339
+ bold: z.ZodOptional<z.ZodBoolean>;
340
+ underline: z.ZodOptional<z.ZodBoolean>;
341
+ 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")[]]>>;
342
+ reset: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
343
+ }, "strip", z.ZodTypeAny, {
344
+ bold?: boolean | undefined;
345
+ underline?: boolean | undefined;
346
+ color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
347
+ reset?: boolean | undefined;
348
+ }, {
349
+ bold?: boolean | undefined;
350
+ underline?: boolean | undefined;
351
+ color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
352
+ reset?: boolean | undefined;
353
+ }>>;
354
+ /** Style of the help description */
355
+ descriptionStyle: z.ZodOptional<z.ZodObject<{
356
+ bold: z.ZodOptional<z.ZodBoolean>;
357
+ underline: z.ZodOptional<z.ZodBoolean>;
358
+ 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")[]]>>;
359
+ reset: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
360
+ }, "strip", z.ZodTypeAny, {
361
+ bold?: boolean | undefined;
362
+ underline?: boolean | undefined;
363
+ color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
364
+ reset?: boolean | undefined;
365
+ }, {
366
+ bold?: boolean | undefined;
367
+ underline?: boolean | undefined;
368
+ color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
369
+ reset?: boolean | undefined;
370
+ }>>;
371
+ /** Style of the help subtitles for commands, options and examples */
372
+ subtitleStyle: z.ZodOptional<z.ZodObject<{
373
+ bold: z.ZodOptional<z.ZodBoolean>;
374
+ underline: z.ZodOptional<z.ZodBoolean>;
375
+ 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")[]]>>;
376
+ reset: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
377
+ }, "strip", z.ZodTypeAny, {
378
+ bold?: boolean | undefined;
379
+ underline?: boolean | undefined;
380
+ color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
381
+ reset?: boolean | undefined;
382
+ }, {
383
+ bold?: boolean | undefined;
384
+ underline?: boolean | undefined;
385
+ color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
386
+ reset?: boolean | undefined;
387
+ }>>;
388
+ /** Style of the help usage */
389
+ usageStyle: z.ZodOptional<z.ZodObject<{
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
+ }>>;
461
+ }, "strip", z.ZodTypeAny, {
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;
486
+ }, {
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;
511
+ }>>;
512
+ /** Style of the help header */
513
+ headerStyle: z.ZodOptional<z.ZodObject<{
514
+ bold: z.ZodOptional<z.ZodBoolean>;
515
+ underline: z.ZodOptional<z.ZodBoolean>;
516
+ 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")[]]>>;
517
+ reset: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
518
+ }, "strip", z.ZodTypeAny, {
519
+ bold?: boolean | undefined;
520
+ underline?: boolean | undefined;
521
+ color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
522
+ reset?: boolean | undefined;
523
+ }, {
524
+ bold?: boolean | undefined;
525
+ underline?: boolean | undefined;
526
+ color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
527
+ reset?: boolean | undefined;
528
+ }>>;
529
+ /** Style of the help footer */
530
+ footerStyle: z.ZodOptional<z.ZodObject<{
531
+ bold: z.ZodOptional<z.ZodBoolean>;
532
+ underline: z.ZodOptional<z.ZodBoolean>;
533
+ 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")[]]>>;
534
+ reset: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
535
+ }, "strip", z.ZodTypeAny, {
536
+ bold?: boolean | undefined;
537
+ underline?: boolean | undefined;
538
+ color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
539
+ reset?: boolean | undefined;
540
+ }, {
541
+ bold?: boolean | undefined;
542
+ underline?: boolean | undefined;
543
+ color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
544
+ reset?: boolean | undefined;
545
+ }>>;
546
+ /** Maximum length of a row in the help output */
547
+ lineLength: z.ZodOptional<z.ZodNumber>;
548
+ /** Options for examples section */
549
+ exampleOptions: z.ZodOptional<z.ZodObject<{
550
+ /** Style of the example description */
551
+ descriptionStyle: z.ZodOptional<z.ZodObject<{
552
+ bold: z.ZodOptional<z.ZodBoolean>;
553
+ underline: z.ZodOptional<z.ZodBoolean>;
554
+ 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")[]]>>;
555
+ reset: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
556
+ }, "strip", z.ZodTypeAny, {
557
+ bold?: boolean | undefined;
558
+ underline?: boolean | undefined;
559
+ color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
560
+ reset?: boolean | undefined;
561
+ }, {
562
+ bold?: boolean | undefined;
563
+ underline?: boolean | undefined;
564
+ color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
565
+ reset?: boolean | undefined;
566
+ }>>;
567
+ /** Style of the example input */
568
+ inputStyle: z.ZodOptional<z.ZodObject<{
569
+ bold: z.ZodOptional<z.ZodBoolean>;
570
+ underline: z.ZodOptional<z.ZodBoolean>;
571
+ 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")[]]>>;
572
+ reset: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
573
+ }, "strip", z.ZodTypeAny, {
574
+ bold?: boolean | undefined;
575
+ underline?: boolean | undefined;
576
+ color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
577
+ reset?: boolean | undefined;
578
+ }, {
579
+ bold?: boolean | undefined;
580
+ underline?: boolean | undefined;
581
+ color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
582
+ reset?: boolean | undefined;
583
+ }>>;
584
+ /** Style of the example output */
585
+ outputStyle: z.ZodOptional<z.ZodObject<{
586
+ bold: z.ZodOptional<z.ZodBoolean>;
587
+ underline: z.ZodOptional<z.ZodBoolean>;
588
+ 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")[]]>>;
589
+ reset: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
590
+ }, "strip", z.ZodTypeAny, {
591
+ bold?: boolean | undefined;
592
+ underline?: boolean | undefined;
593
+ color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
594
+ reset?: boolean | undefined;
595
+ }, {
596
+ bold?: boolean | undefined;
597
+ underline?: boolean | undefined;
598
+ color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
599
+ reset?: boolean | undefined;
600
+ }>>;
601
+ /** Prefix for the example input (default: `$`) */
602
+ inputPrefix: z.ZodOptional<z.ZodDefault<z.ZodString>>;
603
+ /** Prefix for the example output (default: `>`) */
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>>;
624
+ }, "strip", z.ZodTypeAny, {
625
+ descriptionStyle?: {
626
+ bold?: boolean | undefined;
627
+ underline?: boolean | undefined;
628
+ color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
629
+ reset?: boolean | undefined;
630
+ } | undefined;
631
+ inputStyle?: {
632
+ bold?: boolean | undefined;
633
+ underline?: boolean | undefined;
634
+ color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
635
+ reset?: boolean | undefined;
636
+ } | undefined;
637
+ outputStyle?: {
638
+ bold?: boolean | undefined;
639
+ underline?: boolean | undefined;
640
+ color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
641
+ reset?: boolean | undefined;
642
+ } | undefined;
643
+ inputPrefix?: string | undefined;
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;
652
+ }, {
653
+ descriptionStyle?: {
654
+ bold?: boolean | undefined;
655
+ underline?: boolean | undefined;
656
+ color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
657
+ reset?: boolean | undefined;
658
+ } | undefined;
659
+ inputStyle?: {
660
+ bold?: boolean | undefined;
661
+ underline?: boolean | undefined;
662
+ color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
663
+ reset?: boolean | undefined;
664
+ } | undefined;
665
+ outputStyle?: {
666
+ bold?: boolean | undefined;
667
+ underline?: boolean | undefined;
668
+ color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
669
+ reset?: boolean | undefined;
670
+ } | undefined;
671
+ inputPrefix?: string | undefined;
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;
680
+ }>>;
681
+ /** Text to display at the very top, describing CLI usage */
682
+ usageText: z.ZodOptional<z.ZodString>;
683
+ /** Text to display above the description, below the usage */
684
+ headerText: z.ZodOptional<z.ZodString>;
685
+ /** Text to display at the very bottom, below the examples */
686
+ footerText: z.ZodOptional<z.ZodString>;
687
+ }, "strip", z.ZodTypeAny, {
688
+ bindCommand?: boolean | undefined;
689
+ bindOption?: boolean | undefined;
690
+ useGlobalTableColumns?: boolean | undefined;
691
+ commandOptions?: {
692
+ aliasPrefix?: string | undefined;
693
+ compact?: boolean | undefined;
694
+ nameStyle?: {
695
+ bold?: boolean | undefined;
696
+ underline?: boolean | undefined;
697
+ color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
698
+ reset?: boolean | undefined;
699
+ } | undefined;
700
+ descriptionStyle?: {
701
+ bold?: boolean | undefined;
702
+ underline?: boolean | undefined;
703
+ color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
704
+ reset?: boolean | undefined;
705
+ } | undefined;
706
+ namePrefix?: string | undefined;
707
+ } | undefined;
708
+ optionOptions?: {
709
+ aliasPrefix?: string | undefined;
710
+ negateAliasPrefix?: string | undefined;
711
+ compact?: boolean | undefined;
712
+ nameStyle?: {
713
+ bold?: boolean | undefined;
714
+ underline?: boolean | undefined;
715
+ color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
716
+ reset?: boolean | undefined;
717
+ } | undefined;
718
+ descriptionStyle?: {
719
+ bold?: boolean | undefined;
720
+ underline?: boolean | undefined;
721
+ color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
722
+ reset?: boolean | undefined;
723
+ } | undefined;
724
+ namePrefix?: string | undefined;
725
+ negatePrefix?: string | undefined;
726
+ displayNegations?: boolean | undefined;
727
+ } | undefined;
728
+ titleStyle?: {
729
+ bold?: boolean | undefined;
730
+ underline?: boolean | undefined;
731
+ color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
732
+ reset?: boolean | undefined;
733
+ } | undefined;
734
+ descriptionStyle?: {
735
+ bold?: boolean | undefined;
736
+ underline?: boolean | undefined;
737
+ color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
738
+ reset?: boolean | undefined;
739
+ } | undefined;
740
+ subtitleStyle?: {
741
+ bold?: boolean | undefined;
742
+ underline?: boolean | undefined;
743
+ color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
744
+ reset?: boolean | undefined;
745
+ } | undefined;
746
+ usageStyle?: {
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;
771
+ } | undefined;
772
+ headerStyle?: {
773
+ bold?: boolean | undefined;
774
+ underline?: boolean | undefined;
775
+ color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
776
+ reset?: boolean | undefined;
777
+ } | undefined;
778
+ footerStyle?: {
779
+ bold?: boolean | undefined;
780
+ underline?: boolean | undefined;
781
+ color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
782
+ reset?: boolean | undefined;
783
+ } | undefined;
784
+ lineLength?: number | undefined;
785
+ exampleOptions?: {
786
+ descriptionStyle?: {
787
+ bold?: boolean | undefined;
788
+ underline?: boolean | undefined;
789
+ color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
790
+ reset?: boolean | undefined;
791
+ } | undefined;
792
+ inputStyle?: {
793
+ bold?: boolean | undefined;
794
+ underline?: boolean | undefined;
795
+ color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
796
+ reset?: boolean | undefined;
797
+ } | undefined;
798
+ outputStyle?: {
799
+ bold?: boolean | undefined;
800
+ underline?: boolean | undefined;
801
+ color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
802
+ reset?: boolean | undefined;
803
+ } | undefined;
804
+ inputPrefix?: string | undefined;
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;
813
+ } | undefined;
814
+ usageText?: string | undefined;
815
+ headerText?: string | undefined;
816
+ footerText?: string | undefined;
817
+ }, {
818
+ bindCommand?: boolean | undefined;
819
+ bindOption?: boolean | undefined;
820
+ useGlobalTableColumns?: boolean | undefined;
821
+ commandOptions?: {
822
+ aliasPrefix?: string | undefined;
823
+ compact?: boolean | undefined;
824
+ nameStyle?: {
825
+ bold?: boolean | undefined;
826
+ underline?: boolean | undefined;
827
+ color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
828
+ reset?: boolean | undefined;
829
+ } | undefined;
830
+ descriptionStyle?: {
831
+ bold?: boolean | undefined;
832
+ underline?: boolean | undefined;
833
+ color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
834
+ reset?: boolean | undefined;
835
+ } | undefined;
836
+ namePrefix?: string | undefined;
837
+ } | undefined;
838
+ optionOptions?: {
839
+ aliasPrefix?: string | undefined;
840
+ negateAliasPrefix?: string | undefined;
841
+ compact?: boolean | undefined;
842
+ nameStyle?: {
843
+ bold?: boolean | undefined;
844
+ underline?: boolean | undefined;
845
+ color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
846
+ reset?: boolean | undefined;
847
+ } | undefined;
848
+ descriptionStyle?: {
849
+ bold?: boolean | undefined;
850
+ underline?: boolean | undefined;
851
+ color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
852
+ reset?: boolean | undefined;
853
+ } | undefined;
854
+ namePrefix?: string | undefined;
855
+ negatePrefix?: string | undefined;
856
+ displayNegations?: boolean | undefined;
857
+ } | undefined;
858
+ titleStyle?: {
859
+ bold?: boolean | undefined;
860
+ underline?: boolean | undefined;
861
+ color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
862
+ reset?: boolean | undefined;
863
+ } | undefined;
864
+ descriptionStyle?: {
865
+ bold?: boolean | undefined;
866
+ underline?: boolean | undefined;
867
+ color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
868
+ reset?: boolean | undefined;
869
+ } | undefined;
870
+ subtitleStyle?: {
871
+ bold?: boolean | undefined;
872
+ underline?: boolean | undefined;
873
+ color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
874
+ reset?: boolean | undefined;
875
+ } | undefined;
876
+ usageStyle?: {
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;
901
+ } | undefined;
902
+ headerStyle?: {
903
+ bold?: boolean | undefined;
904
+ underline?: boolean | undefined;
905
+ color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
906
+ reset?: boolean | undefined;
907
+ } | undefined;
908
+ footerStyle?: {
909
+ bold?: boolean | undefined;
910
+ underline?: boolean | undefined;
911
+ color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
912
+ reset?: boolean | undefined;
913
+ } | undefined;
914
+ lineLength?: number | undefined;
915
+ exampleOptions?: {
916
+ descriptionStyle?: {
917
+ bold?: boolean | undefined;
918
+ underline?: boolean | undefined;
919
+ color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
920
+ reset?: boolean | undefined;
921
+ } | undefined;
922
+ inputStyle?: {
923
+ bold?: boolean | undefined;
924
+ underline?: boolean | undefined;
925
+ color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
926
+ reset?: boolean | undefined;
927
+ } | undefined;
928
+ outputStyle?: {
929
+ bold?: boolean | undefined;
930
+ underline?: boolean | undefined;
931
+ color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
932
+ reset?: boolean | undefined;
933
+ } | undefined;
934
+ inputPrefix?: string | undefined;
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;
943
+ } | undefined;
944
+ usageText?: string | undefined;
945
+ headerText?: string | undefined;
946
+ footerText?: string | undefined;
947
+ }>;
948
+ export type HelpConfig = z.infer<typeof HelpConfig>;
949
+ export declare const defaultHelpConfig: DeepRequired<HelpConfig>;
950
+ export type HelpItem = {
951
+ name: string;
952
+ aliases: string[];
953
+ description: string;
954
+ hidden?: boolean;
955
+ negatable?: boolean;
956
+ };
957
+ export declare class HelpGenerator {
958
+ entry: MassargCommand<any>;
959
+ config: DeepRequired<HelpConfig>;
960
+ constructor(entry: MassargCommand<any>, config?: HelpConfig);
961
+ generate(): string;
962
+ printHelp(): void;
963
+ }
964
+ //# sourceMappingURL=help.d.ts.map