Skip to content

Commit 2ad1258

Browse files
committed
feat: allow negative descriptions
1 parent e48e3a4 commit 2ad1258

File tree

2 files changed

+146
-383
lines changed

2 files changed

+146
-383
lines changed

Diff for: types/bin/cli-flags.d.ts

+29-21
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,10 @@ declare const _exports: {
3535
type: string;
3636
multiple: boolean;
3737
description: string;
38+
negatedDescription: string;
3839
path: string;
3940
}[];
4041
description: string;
41-
negatedDescription: string;
4242
simpleType: string;
4343
multiple: boolean;
4444
};
@@ -71,10 +71,10 @@ declare const _exports: {
7171
type: string;
7272
multiple: boolean;
7373
description: string;
74+
negatedDescription: string;
7475
path: string;
7576
}[];
7677
description: string;
77-
negatedDescription: string;
7878
simpleType: string;
7979
multiple: boolean;
8080
};
@@ -105,10 +105,10 @@ declare const _exports: {
105105
type: string;
106106
multiple: boolean;
107107
description: string;
108+
negatedDescription: string;
108109
path: string;
109110
}[];
110111
description: string;
111-
negatedDescription: string;
112112
simpleType: string;
113113
multiple: boolean;
114114
};
@@ -117,10 +117,10 @@ declare const _exports: {
117117
type: string;
118118
multiple: boolean;
119119
description: string;
120+
negatedDescription: string;
120121
path: string;
121122
}[];
122123
description: string;
123-
negatedDescription: string;
124124
simpleType: string;
125125
multiple: boolean;
126126
};
@@ -235,10 +235,10 @@ declare const _exports: {
235235
type: string;
236236
multiple: boolean;
237237
description: string;
238+
negatedDescription: string;
238239
path: string;
239240
}[];
240241
description: string;
241-
negatedDescription: string;
242242
simpleType: string;
243243
multiple: boolean;
244244
};
@@ -279,18 +279,19 @@ declare const _exports: {
279279
type: string;
280280
multiple: boolean;
281281
description: string;
282+
negatedDescription: string;
282283
path: string;
283284
}
284285
| {
285286
type: string;
286287
values: string[];
287288
multiple: boolean;
288289
description: string;
290+
negatedDescription: string;
289291
path: string;
290292
}
291293
)[];
292294
description: string;
293-
negatedDescription: string;
294295
simpleType: string;
295296
multiple: boolean;
296297
};
@@ -299,10 +300,10 @@ declare const _exports: {
299300
type: string;
300301
multiple: boolean;
301302
description: string;
303+
negatedDescription: string;
302304
path: string;
303305
}[];
304306
description: string;
305-
negatedDescription: string;
306307
simpleType: string;
307308
multiple: boolean;
308309
};
@@ -311,10 +312,10 @@ declare const _exports: {
311312
type: string;
312313
multiple: boolean;
313314
description: string;
315+
negatedDescription: string;
314316
path: string;
315317
}[];
316318
description: string;
317-
negatedDescription: string;
318319
simpleType: string;
319320
multiple: boolean;
320321
};
@@ -466,10 +467,10 @@ declare const _exports: {
466467
type: string;
467468
multiple: boolean;
468469
description: string;
470+
negatedDescription: string;
469471
path: string;
470472
}[];
471473
description: string;
472-
negatedDescription: string;
473474
simpleType: string;
474475
multiple: boolean;
475476
};
@@ -498,10 +499,10 @@ declare const _exports: {
498499
type: string;
499500
multiple: boolean;
500501
description: string;
502+
negatedDescription: string;
501503
path: string;
502504
}[];
503505
description: string;
504-
negatedDescription: string;
505506
simpleType: string;
506507
multiple: boolean;
507508
};
@@ -510,22 +511,30 @@ declare const _exports: {
510511
type: string;
511512
multiple: boolean;
512513
description: string;
514+
negatedDescription: string;
513515
path: string;
514516
}[];
515517
description: string;
516-
negatedDescription: string;
517518
simpleType: string;
518519
multiple: boolean;
519520
};
520521
open: {
521-
configs: {
522-
type: string;
523-
multiple: boolean;
524-
description: string;
525-
path: string;
526-
}[];
522+
configs: (
523+
| {
524+
type: string;
525+
multiple: boolean;
526+
description: string;
527+
path: string;
528+
}
529+
| {
530+
type: string;
531+
multiple: boolean;
532+
description: string;
533+
negatedDescription: string;
534+
path: string;
535+
}
536+
)[];
527537
description: string;
528-
negatedDescription: string;
529538
simpleType: string;
530539
multiple: boolean;
531540
};
@@ -581,7 +590,6 @@ declare const _exports: {
581590
path: string;
582591
}[];
583592
description: string;
584-
negatedDescription: string;
585593
simpleType: string;
586594
multiple: boolean;
587595
};
@@ -842,10 +850,10 @@ declare const _exports: {
842850
type: string;
843851
multiple: boolean;
844852
description: string;
853+
negatedDescription: string;
845854
path: string;
846855
}[];
847856
description: string;
848-
negatedDescription: string;
849857
simpleType: string;
850858
multiple: boolean;
851859
};
@@ -854,10 +862,10 @@ declare const _exports: {
854862
type: string;
855863
multiple: boolean;
856864
description: string;
865+
negatedDescription: string;
857866
path: string;
858867
}[];
859868
description: string;
860-
negatedDescription: string;
861869
simpleType: string;
862870
multiple: boolean;
863871
};

0 commit comments

Comments
 (0)