massarg 2.0.1 → 2.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/help.d.ts CHANGED
@@ -2,1029 +2,578 @@ 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
- /** Length of each row in the table */
6
5
  lineLength: z.ZodOptional<z.ZodNumber>;
7
- /** When `false`, each row is separated by a blank line */
8
6
  compact: z.ZodOptional<z.ZodBoolean>;
9
- /** Style of the command/option name */
10
7
  nameStyle: z.ZodOptional<z.ZodObject<{
11
8
  bold: z.ZodOptional<z.ZodBoolean>;
12
9
  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")[]]>>;
10
+ color: z.ZodOptional<z.ZodEnum<{
11
+ red: "red";
12
+ green: "green";
13
+ yellow: "yellow";
14
+ blue: "blue";
15
+ magenta: "magenta";
16
+ cyan: "cyan";
17
+ white: "white";
18
+ gray: "gray";
19
+ grey: "grey";
20
+ brightRed: "brightRed";
21
+ brightGreen: "brightGreen";
22
+ brightYellow: "brightYellow";
23
+ brightBlue: "brightBlue";
24
+ brightMagenta: "brightMagenta";
25
+ brightCyan: "brightCyan";
26
+ brightWhite: "brightWhite";
27
+ }>>;
14
28
  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 */
29
+ }, z.core.$strip>>;
27
30
  descriptionStyle: z.ZodOptional<z.ZodObject<{
28
31
  bold: z.ZodOptional<z.ZodBoolean>;
29
32
  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")[]]>>;
33
+ color: z.ZodOptional<z.ZodEnum<{
34
+ red: "red";
35
+ green: "green";
36
+ yellow: "yellow";
37
+ blue: "blue";
38
+ magenta: "magenta";
39
+ cyan: "cyan";
40
+ white: "white";
41
+ gray: "gray";
42
+ grey: "grey";
43
+ brightRed: "brightRed";
44
+ brightGreen: "brightGreen";
45
+ brightYellow: "brightYellow";
46
+ brightBlue: "brightBlue";
47
+ brightMagenta: "brightMagenta";
48
+ brightCyan: "brightCyan";
49
+ brightWhite: "brightWhite";
50
+ }>>;
31
51
  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) */
52
+ }, z.core.$strip>>;
44
53
  namePrefix: z.ZodOptional<z.ZodString>;
45
- /** Prefix for the command/option aliases (default is the command's prefix) */
46
54
  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
- }>;
55
+ }, z.core.$strip>;
82
56
  export type GenerateTableCommandConfig = z.infer<typeof GenerateTableCommandConfig>;
83
- export declare const GenerateTableOptionConfig: z.ZodObject<z.objectUtil.extendShape<{
84
- /** Length of each row in the table */
57
+ export declare const GenerateTableOptionConfig: z.ZodObject<{
85
58
  lineLength: z.ZodOptional<z.ZodNumber>;
86
- /** When `false`, each row is separated by a blank line */
87
59
  compact: z.ZodOptional<z.ZodBoolean>;
88
- /** Style of the command/option name */
89
60
  nameStyle: z.ZodOptional<z.ZodObject<{
90
61
  bold: z.ZodOptional<z.ZodBoolean>;
91
62
  underline: z.ZodOptional<z.ZodBoolean>;
92
- 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")[]]>>;
63
+ color: z.ZodOptional<z.ZodEnum<{
64
+ red: "red";
65
+ green: "green";
66
+ yellow: "yellow";
67
+ blue: "blue";
68
+ magenta: "magenta";
69
+ cyan: "cyan";
70
+ white: "white";
71
+ gray: "gray";
72
+ grey: "grey";
73
+ brightRed: "brightRed";
74
+ brightGreen: "brightGreen";
75
+ brightYellow: "brightYellow";
76
+ brightBlue: "brightBlue";
77
+ brightMagenta: "brightMagenta";
78
+ brightCyan: "brightCyan";
79
+ brightWhite: "brightWhite";
80
+ }>>;
93
81
  reset: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
94
- }, "strip", z.ZodTypeAny, {
95
- bold?: boolean | undefined;
96
- underline?: boolean | undefined;
97
- color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
98
- reset?: boolean | undefined;
99
- }, {
100
- bold?: boolean | undefined;
101
- underline?: boolean | undefined;
102
- color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
103
- reset?: boolean | undefined;
104
- }>>;
105
- /** Style of the command/option description */
82
+ }, z.core.$strip>>;
106
83
  descriptionStyle: z.ZodOptional<z.ZodObject<{
107
84
  bold: z.ZodOptional<z.ZodBoolean>;
108
85
  underline: z.ZodOptional<z.ZodBoolean>;
109
- 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")[]]>>;
86
+ color: z.ZodOptional<z.ZodEnum<{
87
+ red: "red";
88
+ green: "green";
89
+ yellow: "yellow";
90
+ blue: "blue";
91
+ magenta: "magenta";
92
+ cyan: "cyan";
93
+ white: "white";
94
+ gray: "gray";
95
+ grey: "grey";
96
+ brightRed: "brightRed";
97
+ brightGreen: "brightGreen";
98
+ brightYellow: "brightYellow";
99
+ brightBlue: "brightBlue";
100
+ brightMagenta: "brightMagenta";
101
+ brightCyan: "brightCyan";
102
+ brightWhite: "brightWhite";
103
+ }>>;
110
104
  reset: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
111
- }, "strip", z.ZodTypeAny, {
112
- bold?: boolean | undefined;
113
- underline?: boolean | undefined;
114
- color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
115
- reset?: boolean | undefined;
116
- }, {
117
- bold?: boolean | undefined;
118
- underline?: boolean | undefined;
119
- color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
120
- reset?: boolean | undefined;
121
- }>>;
122
- /** Prefix for the command/option name (default is the command's prefix) */
105
+ }, z.core.$strip>>;
123
106
  namePrefix: z.ZodOptional<z.ZodString>;
124
- /** Prefix for the command/option aliases (default is the command's prefix) */
125
107
  aliasPrefix: z.ZodOptional<z.ZodString>;
126
- }, {
127
- /** Whether to display negations with each option name */
128
108
  displayNegations: z.ZodOptional<z.ZodBoolean>;
129
- /** Whether to display the default value with each option (if it has one) */
130
109
  displayDefaultValue: z.ZodOptional<z.ZodBoolean>;
131
- /** Style of the default value */
132
110
  defaultValueStyle: z.ZodOptional<z.ZodObject<{
133
111
  bold: z.ZodOptional<z.ZodBoolean>;
134
112
  underline: z.ZodOptional<z.ZodBoolean>;
135
- 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")[]]>>;
113
+ color: z.ZodOptional<z.ZodEnum<{
114
+ red: "red";
115
+ green: "green";
116
+ yellow: "yellow";
117
+ blue: "blue";
118
+ magenta: "magenta";
119
+ cyan: "cyan";
120
+ white: "white";
121
+ gray: "gray";
122
+ grey: "grey";
123
+ brightRed: "brightRed";
124
+ brightGreen: "brightGreen";
125
+ brightYellow: "brightYellow";
126
+ brightBlue: "brightBlue";
127
+ brightMagenta: "brightMagenta";
128
+ brightCyan: "brightCyan";
129
+ brightWhite: "brightWhite";
130
+ }>>;
136
131
  reset: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
137
- }, "strip", z.ZodTypeAny, {
138
- bold?: boolean | undefined;
139
- underline?: boolean | undefined;
140
- color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
141
- reset?: boolean | undefined;
142
- }, {
143
- bold?: boolean | undefined;
144
- underline?: boolean | undefined;
145
- color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
146
- reset?: boolean | undefined;
147
- }>>;
148
- }>, "strip", z.ZodTypeAny, {
149
- lineLength?: number | undefined;
150
- compact?: boolean | undefined;
151
- nameStyle?: {
152
- bold?: boolean | undefined;
153
- underline?: boolean | undefined;
154
- color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
155
- reset?: boolean | undefined;
156
- } | undefined;
157
- descriptionStyle?: {
158
- bold?: boolean | undefined;
159
- underline?: boolean | undefined;
160
- color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
161
- reset?: boolean | undefined;
162
- } | undefined;
163
- namePrefix?: string | undefined;
164
- aliasPrefix?: string | undefined;
165
- displayNegations?: boolean | undefined;
166
- displayDefaultValue?: boolean | undefined;
167
- defaultValueStyle?: {
168
- bold?: boolean | undefined;
169
- underline?: boolean | undefined;
170
- color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
171
- reset?: boolean | undefined;
172
- } | undefined;
173
- }, {
174
- lineLength?: number | undefined;
175
- compact?: boolean | undefined;
176
- nameStyle?: {
177
- bold?: boolean | undefined;
178
- underline?: boolean | undefined;
179
- color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
180
- reset?: boolean | undefined;
181
- } | undefined;
182
- descriptionStyle?: {
183
- bold?: boolean | undefined;
184
- underline?: boolean | undefined;
185
- color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
186
- reset?: boolean | undefined;
187
- } | undefined;
188
- namePrefix?: string | undefined;
189
- aliasPrefix?: string | undefined;
190
- displayNegations?: boolean | undefined;
191
- displayDefaultValue?: boolean | undefined;
192
- defaultValueStyle?: {
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
- } | undefined;
198
- }>;
132
+ }, z.core.$strip>>;
133
+ }, z.core.$strip>;
199
134
  export type GenerateTableOptionConfig = z.infer<typeof GenerateTableOptionConfig>;
200
135
  export declare const HelpConfig: z.ZodObject<{
201
- /**
202
- * Whether to bind the help command to this command
203
- *
204
- * Set this to `true` to automatically add a `help` command to this command's subcommands.
205
- */
206
136
  bindCommand: z.ZodOptional<z.ZodBoolean>;
207
- /**
208
- * Whether to bind the help option to this command
209
- *
210
- * Set this to `true` to automatically add a `--help` option to this command's options.
211
- */
212
137
  bindOption: z.ZodOptional<z.ZodBoolean>;
213
- /** Whether to align all tables to the column widths, or have each table be independent. Default is `true` */
214
138
  useGlobalTableColumns: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
215
- /** Options for generating the table of commands */
216
- commandOptions: z.ZodOptional<z.ZodObject<Omit<{
217
- /** Length of each row in the table */
218
- lineLength: z.ZodOptional<z.ZodNumber>;
219
- /** When `false`, each row is separated by a blank line */
139
+ commandOptions: z.ZodOptional<z.ZodObject<{
220
140
  compact: z.ZodOptional<z.ZodBoolean>;
221
- /** Style of the command/option name */
222
141
  nameStyle: z.ZodOptional<z.ZodObject<{
223
142
  bold: z.ZodOptional<z.ZodBoolean>;
224
143
  underline: z.ZodOptional<z.ZodBoolean>;
225
- 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")[]]>>;
144
+ color: z.ZodOptional<z.ZodEnum<{
145
+ red: "red";
146
+ green: "green";
147
+ yellow: "yellow";
148
+ blue: "blue";
149
+ magenta: "magenta";
150
+ cyan: "cyan";
151
+ white: "white";
152
+ gray: "gray";
153
+ grey: "grey";
154
+ brightRed: "brightRed";
155
+ brightGreen: "brightGreen";
156
+ brightYellow: "brightYellow";
157
+ brightBlue: "brightBlue";
158
+ brightMagenta: "brightMagenta";
159
+ brightCyan: "brightCyan";
160
+ brightWhite: "brightWhite";
161
+ }>>;
226
162
  reset: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
227
- }, "strip", z.ZodTypeAny, {
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
- }, {
233
- bold?: boolean | undefined;
234
- underline?: boolean | undefined;
235
- color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
236
- reset?: boolean | undefined;
237
- }>>;
238
- /** Style of the command/option description */
163
+ }, z.core.$strip>>;
239
164
  descriptionStyle: z.ZodOptional<z.ZodObject<{
240
165
  bold: z.ZodOptional<z.ZodBoolean>;
241
166
  underline: z.ZodOptional<z.ZodBoolean>;
242
- 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")[]]>>;
167
+ color: z.ZodOptional<z.ZodEnum<{
168
+ red: "red";
169
+ green: "green";
170
+ yellow: "yellow";
171
+ blue: "blue";
172
+ magenta: "magenta";
173
+ cyan: "cyan";
174
+ white: "white";
175
+ gray: "gray";
176
+ grey: "grey";
177
+ brightRed: "brightRed";
178
+ brightGreen: "brightGreen";
179
+ brightYellow: "brightYellow";
180
+ brightBlue: "brightBlue";
181
+ brightMagenta: "brightMagenta";
182
+ brightCyan: "brightCyan";
183
+ brightWhite: "brightWhite";
184
+ }>>;
243
185
  reset: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
244
- }, "strip", z.ZodTypeAny, {
245
- bold?: boolean | undefined;
246
- underline?: boolean | undefined;
247
- color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
248
- reset?: boolean | undefined;
249
- }, {
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
- }>>;
255
- /** Prefix for the command/option name (default is the command's prefix) */
186
+ }, z.core.$strip>>;
256
187
  namePrefix: z.ZodOptional<z.ZodString>;
257
- /** Prefix for the command/option aliases (default is the command's prefix) */
258
188
  aliasPrefix: z.ZodOptional<z.ZodString>;
259
- }, "lineLength">, "strip", z.ZodTypeAny, {
260
- compact?: boolean | undefined;
261
- nameStyle?: {
262
- bold?: boolean | undefined;
263
- underline?: boolean | undefined;
264
- color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
265
- reset?: boolean | undefined;
266
- } | undefined;
267
- descriptionStyle?: {
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
- } | undefined;
273
- namePrefix?: string | undefined;
274
- aliasPrefix?: string | undefined;
275
- }, {
276
- compact?: boolean | undefined;
277
- nameStyle?: {
278
- bold?: boolean | undefined;
279
- underline?: boolean | undefined;
280
- color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
281
- reset?: boolean | undefined;
282
- } | undefined;
283
- descriptionStyle?: {
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
- } | undefined;
289
- namePrefix?: string | undefined;
290
- aliasPrefix?: string | undefined;
291
- }>>;
292
- /** Options for generating the table of options */
293
- optionOptions: z.ZodOptional<z.ZodObject<Omit<z.objectUtil.extendShape<{
294
- /** Length of each row in the table */
295
- lineLength: z.ZodOptional<z.ZodNumber>;
296
- /** When `false`, each row is separated by a blank line */
189
+ }, z.core.$strip>>;
190
+ optionOptions: z.ZodOptional<z.ZodObject<{
297
191
  compact: z.ZodOptional<z.ZodBoolean>;
298
- /** Style of the command/option name */
299
192
  nameStyle: z.ZodOptional<z.ZodObject<{
300
193
  bold: z.ZodOptional<z.ZodBoolean>;
301
194
  underline: z.ZodOptional<z.ZodBoolean>;
302
- 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")[]]>>;
195
+ color: z.ZodOptional<z.ZodEnum<{
196
+ red: "red";
197
+ green: "green";
198
+ yellow: "yellow";
199
+ blue: "blue";
200
+ magenta: "magenta";
201
+ cyan: "cyan";
202
+ white: "white";
203
+ gray: "gray";
204
+ grey: "grey";
205
+ brightRed: "brightRed";
206
+ brightGreen: "brightGreen";
207
+ brightYellow: "brightYellow";
208
+ brightBlue: "brightBlue";
209
+ brightMagenta: "brightMagenta";
210
+ brightCyan: "brightCyan";
211
+ brightWhite: "brightWhite";
212
+ }>>;
303
213
  reset: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
304
- }, "strip", z.ZodTypeAny, {
305
- bold?: boolean | undefined;
306
- underline?: boolean | undefined;
307
- color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
308
- reset?: boolean | undefined;
309
- }, {
310
- bold?: boolean | undefined;
311
- underline?: boolean | undefined;
312
- color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
313
- reset?: boolean | undefined;
314
- }>>;
315
- /** Style of the command/option description */
214
+ }, z.core.$strip>>;
316
215
  descriptionStyle: z.ZodOptional<z.ZodObject<{
317
216
  bold: z.ZodOptional<z.ZodBoolean>;
318
217
  underline: z.ZodOptional<z.ZodBoolean>;
319
- 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")[]]>>;
218
+ color: z.ZodOptional<z.ZodEnum<{
219
+ red: "red";
220
+ green: "green";
221
+ yellow: "yellow";
222
+ blue: "blue";
223
+ magenta: "magenta";
224
+ cyan: "cyan";
225
+ white: "white";
226
+ gray: "gray";
227
+ grey: "grey";
228
+ brightRed: "brightRed";
229
+ brightGreen: "brightGreen";
230
+ brightYellow: "brightYellow";
231
+ brightBlue: "brightBlue";
232
+ brightMagenta: "brightMagenta";
233
+ brightCyan: "brightCyan";
234
+ brightWhite: "brightWhite";
235
+ }>>;
320
236
  reset: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
321
- }, "strip", z.ZodTypeAny, {
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
- }, {
327
- bold?: boolean | undefined;
328
- underline?: boolean | undefined;
329
- color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
330
- reset?: boolean | undefined;
331
- }>>;
332
- /** Prefix for the command/option name (default is the command's prefix) */
237
+ }, z.core.$strip>>;
333
238
  namePrefix: z.ZodOptional<z.ZodString>;
334
- /** Prefix for the command/option aliases (default is the command's prefix) */
335
239
  aliasPrefix: z.ZodOptional<z.ZodString>;
336
- }, {
337
- /** Whether to display negations with each option name */
338
240
  displayNegations: z.ZodOptional<z.ZodBoolean>;
339
- /** Whether to display the default value with each option (if it has one) */
340
241
  displayDefaultValue: z.ZodOptional<z.ZodBoolean>;
341
- /** Style of the default value */
342
242
  defaultValueStyle: z.ZodOptional<z.ZodObject<{
343
243
  bold: z.ZodOptional<z.ZodBoolean>;
344
244
  underline: z.ZodOptional<z.ZodBoolean>;
345
- 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")[]]>>;
245
+ color: z.ZodOptional<z.ZodEnum<{
246
+ red: "red";
247
+ green: "green";
248
+ yellow: "yellow";
249
+ blue: "blue";
250
+ magenta: "magenta";
251
+ cyan: "cyan";
252
+ white: "white";
253
+ gray: "gray";
254
+ grey: "grey";
255
+ brightRed: "brightRed";
256
+ brightGreen: "brightGreen";
257
+ brightYellow: "brightYellow";
258
+ brightBlue: "brightBlue";
259
+ brightMagenta: "brightMagenta";
260
+ brightCyan: "brightCyan";
261
+ brightWhite: "brightWhite";
262
+ }>>;
346
263
  reset: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
347
- }, "strip", z.ZodTypeAny, {
348
- bold?: boolean | undefined;
349
- underline?: boolean | undefined;
350
- color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
351
- reset?: boolean | undefined;
352
- }, {
353
- bold?: boolean | undefined;
354
- underline?: boolean | undefined;
355
- color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
356
- reset?: boolean | undefined;
357
- }>>;
358
- }>, "lineLength">, "strip", z.ZodTypeAny, {
359
- compact?: boolean | undefined;
360
- nameStyle?: {
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
- } | undefined;
366
- descriptionStyle?: {
367
- bold?: boolean | undefined;
368
- underline?: boolean | undefined;
369
- color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
370
- reset?: boolean | undefined;
371
- } | undefined;
372
- namePrefix?: string | undefined;
373
- aliasPrefix?: string | undefined;
374
- displayNegations?: boolean | undefined;
375
- displayDefaultValue?: boolean | undefined;
376
- defaultValueStyle?: {
377
- bold?: boolean | undefined;
378
- underline?: boolean | undefined;
379
- color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
380
- reset?: boolean | undefined;
381
- } | undefined;
382
- }, {
383
- compact?: boolean | undefined;
384
- nameStyle?: {
385
- bold?: boolean | undefined;
386
- underline?: boolean | undefined;
387
- color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
388
- reset?: boolean | undefined;
389
- } | undefined;
390
- descriptionStyle?: {
391
- bold?: boolean | undefined;
392
- underline?: boolean | undefined;
393
- color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
394
- reset?: boolean | undefined;
395
- } | undefined;
396
- namePrefix?: string | undefined;
397
- aliasPrefix?: string | undefined;
398
- displayNegations?: boolean | undefined;
399
- displayDefaultValue?: boolean | undefined;
400
- defaultValueStyle?: {
401
- bold?: boolean | undefined;
402
- underline?: boolean | undefined;
403
- color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
404
- reset?: boolean | undefined;
405
- } | undefined;
406
- }>>;
407
- /** Style of the help title */
264
+ }, z.core.$strip>>;
265
+ }, z.core.$strip>>;
408
266
  titleStyle: z.ZodOptional<z.ZodObject<{
409
267
  bold: z.ZodOptional<z.ZodBoolean>;
410
268
  underline: z.ZodOptional<z.ZodBoolean>;
411
- 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")[]]>>;
269
+ color: z.ZodOptional<z.ZodEnum<{
270
+ red: "red";
271
+ green: "green";
272
+ yellow: "yellow";
273
+ blue: "blue";
274
+ magenta: "magenta";
275
+ cyan: "cyan";
276
+ white: "white";
277
+ gray: "gray";
278
+ grey: "grey";
279
+ brightRed: "brightRed";
280
+ brightGreen: "brightGreen";
281
+ brightYellow: "brightYellow";
282
+ brightBlue: "brightBlue";
283
+ brightMagenta: "brightMagenta";
284
+ brightCyan: "brightCyan";
285
+ brightWhite: "brightWhite";
286
+ }>>;
412
287
  reset: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
413
- }, "strip", z.ZodTypeAny, {
414
- bold?: boolean | undefined;
415
- underline?: boolean | undefined;
416
- color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
417
- reset?: boolean | undefined;
418
- }, {
419
- bold?: boolean | undefined;
420
- underline?: boolean | undefined;
421
- color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
422
- reset?: boolean | undefined;
423
- }>>;
424
- /** Style of the help description */
288
+ }, z.core.$strip>>;
425
289
  descriptionStyle: z.ZodOptional<z.ZodObject<{
426
290
  bold: z.ZodOptional<z.ZodBoolean>;
427
291
  underline: z.ZodOptional<z.ZodBoolean>;
428
- 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")[]]>>;
292
+ color: z.ZodOptional<z.ZodEnum<{
293
+ red: "red";
294
+ green: "green";
295
+ yellow: "yellow";
296
+ blue: "blue";
297
+ magenta: "magenta";
298
+ cyan: "cyan";
299
+ white: "white";
300
+ gray: "gray";
301
+ grey: "grey";
302
+ brightRed: "brightRed";
303
+ brightGreen: "brightGreen";
304
+ brightYellow: "brightYellow";
305
+ brightBlue: "brightBlue";
306
+ brightMagenta: "brightMagenta";
307
+ brightCyan: "brightCyan";
308
+ brightWhite: "brightWhite";
309
+ }>>;
429
310
  reset: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
430
- }, "strip", z.ZodTypeAny, {
431
- bold?: boolean | undefined;
432
- underline?: boolean | undefined;
433
- color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
434
- reset?: boolean | undefined;
435
- }, {
436
- bold?: boolean | undefined;
437
- underline?: boolean | undefined;
438
- color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
439
- reset?: boolean | undefined;
440
- }>>;
441
- /** Style of the help subtitles for commands, options and examples */
311
+ }, z.core.$strip>>;
442
312
  subtitleStyle: z.ZodOptional<z.ZodObject<{
443
313
  bold: z.ZodOptional<z.ZodBoolean>;
444
314
  underline: z.ZodOptional<z.ZodBoolean>;
445
- 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")[]]>>;
315
+ color: z.ZodOptional<z.ZodEnum<{
316
+ red: "red";
317
+ green: "green";
318
+ yellow: "yellow";
319
+ blue: "blue";
320
+ magenta: "magenta";
321
+ cyan: "cyan";
322
+ white: "white";
323
+ gray: "gray";
324
+ grey: "grey";
325
+ brightRed: "brightRed";
326
+ brightGreen: "brightGreen";
327
+ brightYellow: "brightYellow";
328
+ brightBlue: "brightBlue";
329
+ brightMagenta: "brightMagenta";
330
+ brightCyan: "brightCyan";
331
+ brightWhite: "brightWhite";
332
+ }>>;
446
333
  reset: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
447
- }, "strip", z.ZodTypeAny, {
448
- bold?: boolean | undefined;
449
- underline?: boolean | undefined;
450
- color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
451
- reset?: boolean | undefined;
452
- }, {
453
- bold?: boolean | undefined;
454
- underline?: boolean | undefined;
455
- color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
456
- reset?: boolean | undefined;
457
- }>>;
458
- /** Style of the help usage */
334
+ }, z.core.$strip>>;
459
335
  usageStyle: z.ZodOptional<z.ZodObject<{
460
- /** Style of the help usage title - appears before the usage text (custom or auto) */
461
336
  prefix: z.ZodOptional<z.ZodObject<{
462
337
  bold: z.ZodOptional<z.ZodBoolean>;
463
338
  underline: z.ZodOptional<z.ZodBoolean>;
464
- 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")[]]>>;
339
+ color: z.ZodOptional<z.ZodEnum<{
340
+ red: "red";
341
+ green: "green";
342
+ yellow: "yellow";
343
+ blue: "blue";
344
+ magenta: "magenta";
345
+ cyan: "cyan";
346
+ white: "white";
347
+ gray: "gray";
348
+ grey: "grey";
349
+ brightRed: "brightRed";
350
+ brightGreen: "brightGreen";
351
+ brightYellow: "brightYellow";
352
+ brightBlue: "brightBlue";
353
+ brightMagenta: "brightMagenta";
354
+ brightCyan: "brightCyan";
355
+ brightWhite: "brightWhite";
356
+ }>>;
465
357
  reset: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
466
- }, "strip", z.ZodTypeAny, {
467
- bold?: boolean | undefined;
468
- underline?: boolean | undefined;
469
- color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
470
- reset?: boolean | undefined;
471
- }, {
472
- bold?: boolean | undefined;
473
- underline?: boolean | undefined;
474
- color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
475
- reset?: boolean | undefined;
476
- }>>;
477
- /**
478
- * For custom usage text, this is the primary style used (right after the `prefix` style).
479
- * For automated usage text, this style is used for the command/binary name
480
- */
358
+ }, z.core.$strip>>;
481
359
  main: z.ZodOptional<z.ZodObject<{
482
360
  bold: z.ZodOptional<z.ZodBoolean>;
483
361
  underline: z.ZodOptional<z.ZodBoolean>;
484
- 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")[]]>>;
362
+ color: z.ZodOptional<z.ZodEnum<{
363
+ red: "red";
364
+ green: "green";
365
+ yellow: "yellow";
366
+ blue: "blue";
367
+ magenta: "magenta";
368
+ cyan: "cyan";
369
+ white: "white";
370
+ gray: "gray";
371
+ grey: "grey";
372
+ brightRed: "brightRed";
373
+ brightGreen: "brightGreen";
374
+ brightYellow: "brightYellow";
375
+ brightBlue: "brightBlue";
376
+ brightMagenta: "brightMagenta";
377
+ brightCyan: "brightCyan";
378
+ brightWhite: "brightWhite";
379
+ }>>;
485
380
  reset: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
486
- }, "strip", z.ZodTypeAny, {
487
- bold?: boolean | undefined;
488
- underline?: boolean | undefined;
489
- color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
490
- reset?: boolean | undefined;
491
- }, {
492
- bold?: boolean | undefined;
493
- underline?: boolean | undefined;
494
- color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
495
- reset?: boolean | undefined;
496
- }>>;
497
- /** Style of the help usage commands (if any) */
381
+ }, z.core.$strip>>;
498
382
  command: z.ZodOptional<z.ZodObject<{
499
383
  bold: z.ZodOptional<z.ZodBoolean>;
500
384
  underline: z.ZodOptional<z.ZodBoolean>;
501
- 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")[]]>>;
385
+ color: z.ZodOptional<z.ZodEnum<{
386
+ red: "red";
387
+ green: "green";
388
+ yellow: "yellow";
389
+ blue: "blue";
390
+ magenta: "magenta";
391
+ cyan: "cyan";
392
+ white: "white";
393
+ gray: "gray";
394
+ grey: "grey";
395
+ brightRed: "brightRed";
396
+ brightGreen: "brightGreen";
397
+ brightYellow: "brightYellow";
398
+ brightBlue: "brightBlue";
399
+ brightMagenta: "brightMagenta";
400
+ brightCyan: "brightCyan";
401
+ brightWhite: "brightWhite";
402
+ }>>;
502
403
  reset: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
503
- }, "strip", z.ZodTypeAny, {
504
- bold?: boolean | undefined;
505
- underline?: boolean | undefined;
506
- color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
507
- reset?: boolean | undefined;
508
- }, {
509
- bold?: boolean | undefined;
510
- underline?: boolean | undefined;
511
- color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
512
- reset?: boolean | undefined;
513
- }>>;
514
- /** Style of the help usage options (if any) */
404
+ }, z.core.$strip>>;
515
405
  options: z.ZodOptional<z.ZodObject<{
516
406
  bold: z.ZodOptional<z.ZodBoolean>;
517
407
  underline: z.ZodOptional<z.ZodBoolean>;
518
- 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")[]]>>;
408
+ color: z.ZodOptional<z.ZodEnum<{
409
+ red: "red";
410
+ green: "green";
411
+ yellow: "yellow";
412
+ blue: "blue";
413
+ magenta: "magenta";
414
+ cyan: "cyan";
415
+ white: "white";
416
+ gray: "gray";
417
+ grey: "grey";
418
+ brightRed: "brightRed";
419
+ brightGreen: "brightGreen";
420
+ brightYellow: "brightYellow";
421
+ brightBlue: "brightBlue";
422
+ brightMagenta: "brightMagenta";
423
+ brightCyan: "brightCyan";
424
+ brightWhite: "brightWhite";
425
+ }>>;
519
426
  reset: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
520
- }, "strip", z.ZodTypeAny, {
521
- bold?: boolean | undefined;
522
- underline?: boolean | undefined;
523
- color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
524
- reset?: boolean | undefined;
525
- }, {
526
- bold?: boolean | undefined;
527
- underline?: boolean | undefined;
528
- color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
529
- reset?: boolean | undefined;
530
- }>>;
531
- }, "strip", z.ZodTypeAny, {
532
- options?: {
533
- bold?: boolean | undefined;
534
- underline?: boolean | undefined;
535
- color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
536
- reset?: boolean | undefined;
537
- } | undefined;
538
- prefix?: {
539
- bold?: boolean | undefined;
540
- underline?: boolean | undefined;
541
- color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
542
- reset?: boolean | undefined;
543
- } | undefined;
544
- main?: {
545
- bold?: boolean | undefined;
546
- underline?: boolean | undefined;
547
- color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
548
- reset?: boolean | undefined;
549
- } | undefined;
550
- command?: {
551
- bold?: boolean | undefined;
552
- underline?: boolean | undefined;
553
- color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
554
- reset?: boolean | undefined;
555
- } | undefined;
556
- }, {
557
- options?: {
558
- bold?: boolean | undefined;
559
- underline?: boolean | undefined;
560
- color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
561
- reset?: boolean | undefined;
562
- } | undefined;
563
- prefix?: {
564
- bold?: boolean | undefined;
565
- underline?: boolean | undefined;
566
- color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
567
- reset?: boolean | undefined;
568
- } | undefined;
569
- main?: {
570
- bold?: boolean | undefined;
571
- underline?: boolean | undefined;
572
- color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
573
- reset?: boolean | undefined;
574
- } | undefined;
575
- command?: {
576
- bold?: boolean | undefined;
577
- underline?: boolean | undefined;
578
- color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
579
- reset?: boolean | undefined;
580
- } | undefined;
581
- }>>;
582
- /** Style of the help header */
427
+ }, z.core.$strip>>;
428
+ }, z.core.$strip>>;
583
429
  headerStyle: z.ZodOptional<z.ZodObject<{
584
430
  bold: z.ZodOptional<z.ZodBoolean>;
585
431
  underline: z.ZodOptional<z.ZodBoolean>;
586
- 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
+ color: z.ZodOptional<z.ZodEnum<{
433
+ red: "red";
434
+ green: "green";
435
+ yellow: "yellow";
436
+ blue: "blue";
437
+ magenta: "magenta";
438
+ cyan: "cyan";
439
+ white: "white";
440
+ gray: "gray";
441
+ grey: "grey";
442
+ brightRed: "brightRed";
443
+ brightGreen: "brightGreen";
444
+ brightYellow: "brightYellow";
445
+ brightBlue: "brightBlue";
446
+ brightMagenta: "brightMagenta";
447
+ brightCyan: "brightCyan";
448
+ brightWhite: "brightWhite";
449
+ }>>;
587
450
  reset: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
588
- }, "strip", z.ZodTypeAny, {
589
- bold?: boolean | undefined;
590
- underline?: boolean | undefined;
591
- color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
592
- reset?: boolean | undefined;
593
- }, {
594
- bold?: boolean | undefined;
595
- underline?: boolean | undefined;
596
- color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
597
- reset?: boolean | undefined;
598
- }>>;
599
- /** Style of the help footer */
451
+ }, z.core.$strip>>;
600
452
  footerStyle: z.ZodOptional<z.ZodObject<{
601
453
  bold: z.ZodOptional<z.ZodBoolean>;
602
454
  underline: z.ZodOptional<z.ZodBoolean>;
603
- 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")[]]>>;
455
+ color: z.ZodOptional<z.ZodEnum<{
456
+ red: "red";
457
+ green: "green";
458
+ yellow: "yellow";
459
+ blue: "blue";
460
+ magenta: "magenta";
461
+ cyan: "cyan";
462
+ white: "white";
463
+ gray: "gray";
464
+ grey: "grey";
465
+ brightRed: "brightRed";
466
+ brightGreen: "brightGreen";
467
+ brightYellow: "brightYellow";
468
+ brightBlue: "brightBlue";
469
+ brightMagenta: "brightMagenta";
470
+ brightCyan: "brightCyan";
471
+ brightWhite: "brightWhite";
472
+ }>>;
604
473
  reset: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
605
- }, "strip", z.ZodTypeAny, {
606
- bold?: boolean | undefined;
607
- underline?: boolean | undefined;
608
- color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
609
- reset?: boolean | undefined;
610
- }, {
611
- bold?: boolean | undefined;
612
- underline?: boolean | undefined;
613
- color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
614
- reset?: boolean | undefined;
615
- }>>;
616
- /** Maximum length of a row in the help output */
474
+ }, z.core.$strip>>;
617
475
  lineLength: z.ZodOptional<z.ZodNumber>;
618
- /** Options for examples section */
619
476
  exampleOptions: z.ZodOptional<z.ZodObject<{
620
- /** Style of the example description */
621
477
  descriptionStyle: z.ZodOptional<z.ZodObject<{
622
478
  bold: z.ZodOptional<z.ZodBoolean>;
623
479
  underline: z.ZodOptional<z.ZodBoolean>;
624
- 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")[]]>>;
480
+ color: z.ZodOptional<z.ZodEnum<{
481
+ red: "red";
482
+ green: "green";
483
+ yellow: "yellow";
484
+ blue: "blue";
485
+ magenta: "magenta";
486
+ cyan: "cyan";
487
+ white: "white";
488
+ gray: "gray";
489
+ grey: "grey";
490
+ brightRed: "brightRed";
491
+ brightGreen: "brightGreen";
492
+ brightYellow: "brightYellow";
493
+ brightBlue: "brightBlue";
494
+ brightMagenta: "brightMagenta";
495
+ brightCyan: "brightCyan";
496
+ brightWhite: "brightWhite";
497
+ }>>;
625
498
  reset: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
626
- }, "strip", z.ZodTypeAny, {
627
- bold?: boolean | undefined;
628
- underline?: boolean | undefined;
629
- color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
630
- reset?: boolean | undefined;
631
- }, {
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
- }>>;
637
- /** Style of the example input */
499
+ }, z.core.$strip>>;
638
500
  inputStyle: z.ZodOptional<z.ZodObject<{
639
501
  bold: z.ZodOptional<z.ZodBoolean>;
640
502
  underline: z.ZodOptional<z.ZodBoolean>;
641
- 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")[]]>>;
503
+ color: z.ZodOptional<z.ZodEnum<{
504
+ red: "red";
505
+ green: "green";
506
+ yellow: "yellow";
507
+ blue: "blue";
508
+ magenta: "magenta";
509
+ cyan: "cyan";
510
+ white: "white";
511
+ gray: "gray";
512
+ grey: "grey";
513
+ brightRed: "brightRed";
514
+ brightGreen: "brightGreen";
515
+ brightYellow: "brightYellow";
516
+ brightBlue: "brightBlue";
517
+ brightMagenta: "brightMagenta";
518
+ brightCyan: "brightCyan";
519
+ brightWhite: "brightWhite";
520
+ }>>;
642
521
  reset: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
643
- }, "strip", z.ZodTypeAny, {
644
- bold?: boolean | undefined;
645
- underline?: boolean | undefined;
646
- color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
647
- reset?: boolean | undefined;
648
- }, {
649
- bold?: boolean | undefined;
650
- underline?: boolean | undefined;
651
- color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
652
- reset?: boolean | undefined;
653
- }>>;
654
- /** Style of the example output */
522
+ }, z.core.$strip>>;
655
523
  outputStyle: z.ZodOptional<z.ZodObject<{
656
524
  bold: z.ZodOptional<z.ZodBoolean>;
657
525
  underline: z.ZodOptional<z.ZodBoolean>;
658
- 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")[]]>>;
526
+ color: z.ZodOptional<z.ZodEnum<{
527
+ red: "red";
528
+ green: "green";
529
+ yellow: "yellow";
530
+ blue: "blue";
531
+ magenta: "magenta";
532
+ cyan: "cyan";
533
+ white: "white";
534
+ gray: "gray";
535
+ grey: "grey";
536
+ brightRed: "brightRed";
537
+ brightGreen: "brightGreen";
538
+ brightYellow: "brightYellow";
539
+ brightBlue: "brightBlue";
540
+ brightMagenta: "brightMagenta";
541
+ brightCyan: "brightCyan";
542
+ brightWhite: "brightWhite";
543
+ }>>;
659
544
  reset: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
660
- }, "strip", z.ZodTypeAny, {
661
- bold?: boolean | undefined;
662
- underline?: boolean | undefined;
663
- color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
664
- reset?: boolean | undefined;
665
- }, {
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
- }>>;
671
- /** Prefix for the example input (default: `$`) */
545
+ }, z.core.$strip>>;
672
546
  inputPrefix: z.ZodOptional<z.ZodDefault<z.ZodString>>;
673
- /** Prefix for the example output (default: `>`) */
674
547
  outputPrefix: z.ZodOptional<z.ZodDefault<z.ZodString>>;
675
- /** Style of the example input/output prefixes */
676
548
  prefixStyle: z.ZodOptional<z.ZodObject<{
677
549
  bold: z.ZodOptional<z.ZodBoolean>;
678
550
  underline: z.ZodOptional<z.ZodBoolean>;
679
- 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")[]]>>;
551
+ color: z.ZodOptional<z.ZodEnum<{
552
+ red: "red";
553
+ green: "green";
554
+ yellow: "yellow";
555
+ blue: "blue";
556
+ magenta: "magenta";
557
+ cyan: "cyan";
558
+ white: "white";
559
+ gray: "gray";
560
+ grey: "grey";
561
+ brightRed: "brightRed";
562
+ brightGreen: "brightGreen";
563
+ brightYellow: "brightYellow";
564
+ brightBlue: "brightBlue";
565
+ brightMagenta: "brightMagenta";
566
+ brightCyan: "brightCyan";
567
+ brightWhite: "brightWhite";
568
+ }>>;
680
569
  reset: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
681
- }, "strip", z.ZodTypeAny, {
682
- bold?: boolean | undefined;
683
- underline?: boolean | undefined;
684
- color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
685
- reset?: boolean | undefined;
686
- }, {
687
- bold?: boolean | undefined;
688
- underline?: boolean | undefined;
689
- color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
690
- reset?: boolean | undefined;
691
- }>>;
692
- /** Whether to compact the examples section */
570
+ }, z.core.$strip>>;
693
571
  compact: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
694
- }, "strip", z.ZodTypeAny, {
695
- compact?: boolean | undefined;
696
- descriptionStyle?: {
697
- bold?: boolean | undefined;
698
- underline?: boolean | undefined;
699
- color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
700
- reset?: boolean | undefined;
701
- } | undefined;
702
- inputStyle?: {
703
- bold?: boolean | undefined;
704
- underline?: boolean | undefined;
705
- color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
706
- reset?: boolean | undefined;
707
- } | undefined;
708
- outputStyle?: {
709
- bold?: boolean | undefined;
710
- underline?: boolean | undefined;
711
- color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
712
- reset?: boolean | undefined;
713
- } | undefined;
714
- inputPrefix?: string | undefined;
715
- outputPrefix?: string | undefined;
716
- prefixStyle?: {
717
- bold?: boolean | undefined;
718
- underline?: boolean | undefined;
719
- color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
720
- reset?: boolean | undefined;
721
- } | undefined;
722
- }, {
723
- compact?: boolean | undefined;
724
- descriptionStyle?: {
725
- bold?: boolean | undefined;
726
- underline?: boolean | undefined;
727
- color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
728
- reset?: boolean | undefined;
729
- } | undefined;
730
- inputStyle?: {
731
- bold?: boolean | undefined;
732
- underline?: boolean | undefined;
733
- color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
734
- reset?: boolean | undefined;
735
- } | undefined;
736
- outputStyle?: {
737
- bold?: boolean | undefined;
738
- underline?: boolean | undefined;
739
- color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
740
- reset?: boolean | undefined;
741
- } | undefined;
742
- inputPrefix?: string | undefined;
743
- outputPrefix?: string | undefined;
744
- prefixStyle?: {
745
- bold?: boolean | undefined;
746
- underline?: boolean | undefined;
747
- color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
748
- reset?: boolean | undefined;
749
- } | undefined;
750
- }>>;
751
- /** Text to display at the very top, describing CLI usage */
572
+ }, z.core.$strip>>;
752
573
  usageText: z.ZodOptional<z.ZodString>;
753
- /** Text to display above the description, below the usage */
754
574
  headerText: z.ZodOptional<z.ZodString>;
755
- /** Text to display at the very bottom, below the examples */
756
575
  footerText: z.ZodOptional<z.ZodString>;
757
- }, "strip", z.ZodTypeAny, {
758
- lineLength?: number | undefined;
759
- descriptionStyle?: {
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
- bindCommand?: boolean | undefined;
766
- bindOption?: boolean | undefined;
767
- useGlobalTableColumns?: boolean | undefined;
768
- commandOptions?: {
769
- compact?: boolean | undefined;
770
- nameStyle?: {
771
- bold?: boolean | undefined;
772
- underline?: boolean | undefined;
773
- color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
774
- reset?: boolean | undefined;
775
- } | undefined;
776
- descriptionStyle?: {
777
- bold?: boolean | undefined;
778
- underline?: boolean | undefined;
779
- color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
780
- reset?: boolean | undefined;
781
- } | undefined;
782
- namePrefix?: string | undefined;
783
- aliasPrefix?: string | undefined;
784
- } | undefined;
785
- optionOptions?: {
786
- compact?: boolean | undefined;
787
- nameStyle?: {
788
- bold?: boolean | undefined;
789
- underline?: boolean | undefined;
790
- color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
791
- reset?: boolean | undefined;
792
- } | undefined;
793
- descriptionStyle?: {
794
- bold?: boolean | undefined;
795
- underline?: boolean | undefined;
796
- color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
797
- reset?: boolean | undefined;
798
- } | undefined;
799
- namePrefix?: string | undefined;
800
- aliasPrefix?: string | undefined;
801
- displayNegations?: boolean | undefined;
802
- displayDefaultValue?: boolean | undefined;
803
- defaultValueStyle?: {
804
- bold?: boolean | undefined;
805
- underline?: boolean | undefined;
806
- color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
807
- reset?: boolean | undefined;
808
- } | undefined;
809
- } | undefined;
810
- titleStyle?: {
811
- bold?: boolean | undefined;
812
- underline?: boolean | undefined;
813
- color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
814
- reset?: boolean | undefined;
815
- } | undefined;
816
- subtitleStyle?: {
817
- bold?: boolean | undefined;
818
- underline?: boolean | undefined;
819
- color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
820
- reset?: boolean | undefined;
821
- } | undefined;
822
- usageStyle?: {
823
- options?: {
824
- bold?: boolean | undefined;
825
- underline?: boolean | undefined;
826
- color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
827
- reset?: boolean | undefined;
828
- } | undefined;
829
- prefix?: {
830
- bold?: boolean | undefined;
831
- underline?: boolean | undefined;
832
- color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
833
- reset?: boolean | undefined;
834
- } | undefined;
835
- main?: {
836
- bold?: boolean | undefined;
837
- underline?: boolean | undefined;
838
- color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
839
- reset?: boolean | undefined;
840
- } | undefined;
841
- command?: {
842
- bold?: boolean | undefined;
843
- underline?: boolean | undefined;
844
- color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
845
- reset?: boolean | undefined;
846
- } | undefined;
847
- } | undefined;
848
- headerStyle?: {
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
- footerStyle?: {
855
- bold?: boolean | undefined;
856
- underline?: boolean | undefined;
857
- color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
858
- reset?: boolean | undefined;
859
- } | undefined;
860
- exampleOptions?: {
861
- compact?: boolean | undefined;
862
- descriptionStyle?: {
863
- bold?: boolean | undefined;
864
- underline?: boolean | undefined;
865
- color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
866
- reset?: boolean | undefined;
867
- } | undefined;
868
- inputStyle?: {
869
- bold?: boolean | undefined;
870
- underline?: boolean | undefined;
871
- color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
872
- reset?: boolean | undefined;
873
- } | undefined;
874
- outputStyle?: {
875
- bold?: boolean | undefined;
876
- underline?: boolean | undefined;
877
- color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
878
- reset?: boolean | undefined;
879
- } | undefined;
880
- inputPrefix?: string | undefined;
881
- outputPrefix?: string | undefined;
882
- prefixStyle?: {
883
- bold?: boolean | undefined;
884
- underline?: boolean | undefined;
885
- color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
886
- reset?: boolean | undefined;
887
- } | undefined;
888
- } | undefined;
889
- usageText?: string | undefined;
890
- headerText?: string | undefined;
891
- footerText?: string | undefined;
892
- }, {
893
- lineLength?: number | undefined;
894
- descriptionStyle?: {
895
- bold?: boolean | undefined;
896
- underline?: boolean | undefined;
897
- color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
898
- reset?: boolean | undefined;
899
- } | undefined;
900
- bindCommand?: boolean | undefined;
901
- bindOption?: boolean | undefined;
902
- useGlobalTableColumns?: boolean | undefined;
903
- commandOptions?: {
904
- compact?: boolean | undefined;
905
- nameStyle?: {
906
- bold?: boolean | undefined;
907
- underline?: boolean | undefined;
908
- color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
909
- reset?: boolean | undefined;
910
- } | undefined;
911
- descriptionStyle?: {
912
- bold?: boolean | undefined;
913
- underline?: boolean | undefined;
914
- color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
915
- reset?: boolean | undefined;
916
- } | undefined;
917
- namePrefix?: string | undefined;
918
- aliasPrefix?: string | undefined;
919
- } | undefined;
920
- optionOptions?: {
921
- compact?: boolean | undefined;
922
- nameStyle?: {
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
- descriptionStyle?: {
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
- namePrefix?: string | undefined;
935
- aliasPrefix?: string | undefined;
936
- displayNegations?: boolean | undefined;
937
- displayDefaultValue?: boolean | undefined;
938
- defaultValueStyle?: {
939
- bold?: boolean | undefined;
940
- underline?: boolean | undefined;
941
- color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
942
- reset?: boolean | undefined;
943
- } | undefined;
944
- } | undefined;
945
- titleStyle?: {
946
- bold?: boolean | undefined;
947
- underline?: boolean | undefined;
948
- color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
949
- reset?: boolean | undefined;
950
- } | undefined;
951
- subtitleStyle?: {
952
- bold?: boolean | undefined;
953
- underline?: boolean | undefined;
954
- color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
955
- reset?: boolean | undefined;
956
- } | undefined;
957
- usageStyle?: {
958
- options?: {
959
- bold?: boolean | undefined;
960
- underline?: boolean | undefined;
961
- color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
962
- reset?: boolean | undefined;
963
- } | undefined;
964
- prefix?: {
965
- bold?: boolean | undefined;
966
- underline?: boolean | undefined;
967
- color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
968
- reset?: boolean | undefined;
969
- } | undefined;
970
- main?: {
971
- bold?: boolean | undefined;
972
- underline?: boolean | undefined;
973
- color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
974
- reset?: boolean | undefined;
975
- } | undefined;
976
- command?: {
977
- bold?: boolean | undefined;
978
- underline?: boolean | undefined;
979
- color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
980
- reset?: boolean | undefined;
981
- } | undefined;
982
- } | undefined;
983
- headerStyle?: {
984
- bold?: boolean | undefined;
985
- underline?: boolean | undefined;
986
- color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
987
- reset?: boolean | undefined;
988
- } | undefined;
989
- footerStyle?: {
990
- bold?: boolean | undefined;
991
- underline?: boolean | undefined;
992
- color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
993
- reset?: boolean | undefined;
994
- } | undefined;
995
- exampleOptions?: {
996
- compact?: boolean | undefined;
997
- descriptionStyle?: {
998
- bold?: boolean | undefined;
999
- underline?: boolean | undefined;
1000
- color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
1001
- reset?: boolean | undefined;
1002
- } | undefined;
1003
- inputStyle?: {
1004
- bold?: boolean | undefined;
1005
- underline?: boolean | undefined;
1006
- color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
1007
- reset?: boolean | undefined;
1008
- } | undefined;
1009
- outputStyle?: {
1010
- bold?: boolean | undefined;
1011
- underline?: boolean | undefined;
1012
- color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
1013
- reset?: boolean | undefined;
1014
- } | undefined;
1015
- inputPrefix?: string | undefined;
1016
- outputPrefix?: string | undefined;
1017
- prefixStyle?: {
1018
- bold?: boolean | undefined;
1019
- underline?: boolean | undefined;
1020
- color?: "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "gray" | "grey" | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" | undefined;
1021
- reset?: boolean | undefined;
1022
- } | undefined;
1023
- } | undefined;
1024
- usageText?: string | undefined;
1025
- headerText?: string | undefined;
1026
- footerText?: string | undefined;
1027
- }>;
576
+ }, z.core.$strip>;
1028
577
  export type HelpConfig = z.infer<typeof HelpConfig>;
1029
578
  export declare const defaultHelpConfig: DeepRequired<HelpConfig>;
1030
579
  export type HelpItem = {