-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path@types.inquirer
1276 lines (1135 loc) · 30.5 KB
/
@types.inquirer
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// Type definitions for inquirer 8.2
// Project: https://github.com/SBoudrias/Inquirer.js
// Definitions by: Qubo <https://github.com/tkQubo>
// Parvez <https://github.com/ppathan>
// Jouderian <https://github.com/jouderianjr>
// Qibang <https://github.com/bang88>
// Jason Dreyzehner <https://github.com/bitjson>
// Synarque <https://github.com/synarque>
// Justin Rockwood <https://github.com/jrockwood>
// Keith Kelly <https://github.com/kwkelly>
// Richard Lea <https://github.com/chigix>
// Manuel Thalmann <https://github.com/manuth>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 4.2
import { Interface as ReadlineInterface } from 'readline';
import { Observable } from 'rxjs';
import { ThroughStream } from 'through';
import Choice = require('./lib/objects/choice');
import Choices = require('./lib/objects/choices');
import './lib/objects/separator';
import './lib/prompts/base';
import CheckboxPrompt = require('./lib/prompts/checkbox');
import ConfirmPrompt = require('./lib/prompts/confirm');
import EditorPrompt = require('./lib/prompts/editor');
import ExpandPrompt = require('./lib/prompts/expand');
import InputPrompt = require('./lib/prompts/input');
import ListPrompt = require('./lib/prompts/list');
import NumberPrompt = require('./lib/prompts/number');
import PasswordPrompt = require('./lib/prompts/password');
import RawListPrompt = require('./lib/prompts/rawlist');
import UI = require('./lib/ui/baseUI');
import './lib/ui/bottom-bar';
import './lib/ui/prompt';
import './lib/utils/events';
import './lib/utils/paginator';
import './lib/utils/readline';
import './lib/utils/screen-manager';
/**
* Represents a union which preserves autocompletion.
*
* @template T
* The keys which are available for autocompletion.
*
* @template F
* The fallback-type.
*/
type LiteralUnion<T extends F, F = string> = T | (F & {});
/**
* Represents a function for prompting questions to the user.
*/
export interface PromptFunction {
/**
* Prompts the questions to the user.
*/
<T extends Answers = Answers>(questions: QuestionCollection<T>, initialAnswers?: Partial<T>): Promise<T>;
}
/**
* Provides prompts for answering questions.
*/
export interface PromptModuleBase extends PromptFunction {
/**
* Registers a new prompt-type.
*
* @param name
* The name of the prompt.
*
* @param prompt
* The constructor of the prompt.
*/
registerPrompt(name: string, prompt: prompts.PromptConstructor): void;
/**
* Registers the default prompts.
*/
restoreDefaultPrompts(): void;
}
/**
* Represents a function for registering a prompt.
*/
type RegisterFunction = PromptModuleBase['registerPrompt'];
/**
* Represents a function for restoring a prompt.
*/
type RestoreFunction = PromptModuleBase['restoreDefaultPrompts'];
/**
* Represents a list-based question.
*
* @template T
* The type of the answers.
*
* @template TChoiceMap
* The valid choices for the question.
*/
interface ListQuestionOptionsBase<T extends Answers, TChoiceMap> extends Question<T> {
/**
* The choices of the prompt.
*/
choices?: AsyncDynamicQuestionProperty<ReadonlyArray<DistinctChoice<T, TChoiceMap>>, T> | undefined;
/**
* The number of elements to show on each page.
*/
pageSize?: number | undefined;
}
/**
* Represents either a key of {@link T `T`} or a {@link String `string`}.
*
* @template T
* The type of the keys to suggest.
*/
export type KeyUnion<T> = LiteralUnion<Extract<keyof T, string>>;
/**
* Converts the specified union-type {@link U `U`} to an intersection-type.
*
* @template U
* The union to convert to an intersection.
*/
export type UnionToIntersection<U> = (U extends any ? (k: U) => void : never) extends ((k: infer I) => void) ? I : never;
/**
* A set of answers.
*/
export interface Answers extends Record<string, any> { }
/**
* Provides the functionality to validate answers.
*
* @template T
* The type of the answers.
*/
export type Validator<T extends Answers = Answers> = Question<T>['validate'];
/**
* Provides the functionality to transform an answer.
*
* @template T
* The type of the answers.
*/
export type Transformer<T extends Answers = Answers> = InputQuestionOptions<T>['transformer'];
/**
* Represents a dynamic property for a question.
*
* @template T
* The type of the property.
*
* @template TAnswers
* The type of the answers.
*/
export type DynamicQuestionProperty<T, TAnswers extends Answers = Answers> = T | ((answers: TAnswers) => T);
/**
* Represents a dynamic property for a question which can be fetched asynchronously.
*
* @template T
* The type of the property.
*
* @template TAnswers
* The type of the answers.
*/
export type AsyncDynamicQuestionProperty<T, TAnswers extends Answers = Answers> = DynamicQuestionProperty<
T | Promise<T>,
TAnswers
>;
/**
* Represents a choice-item.
*/
export interface ChoiceBase {
/**
* The type of the choice.
*/
type?: string | undefined;
}
/**
* Provides options for a choice of the {@link ListPrompt `ListPrompt<TQuestion>`}.
*
* @template T
* The type of the answers.
*/
export interface ListChoiceOptions<T extends Answers = Answers> extends ChoiceOptions {
/**
* A value indicating whether the choice is disabled.
*/
disabled?: DynamicQuestionProperty<boolean | string, T> | undefined;
}
/**
* Provides options for a choice of the {@link CheckboxPrompt `CheckboxPrompt<TQuestion>`}.
*
* @template T
* The type of the answers.
*/
export interface CheckboxChoiceOptions<T extends Answers = Answers> extends ListChoiceOptions<T> {
/**
* A value indicating whether the choice should be initially checked.
*/
checked?: boolean | undefined;
}
/**
* Provides options for a choice of the {@link ExpandPrompt `ExpandPrompt<TQuestion>`}.
*/
export interface ExpandChoiceOptions extends ChoiceOptions {
/**
* The key to press for selecting the choice.
*/
key?: string | undefined;
}
/**
* Represents a separator.
*/
export interface SeparatorOptions extends ChoiceBase {
/**
* Gets the type of the choice.
*/
type: 'separator';
/**
* Gets or sets the text of the separator.
*/
line?: string | undefined;
}
/**
* Provides options for a choice.
*/
export interface ChoiceOptions extends ChoiceBase {
/**
* @inheritdoc
*/
type?: 'choice' | undefined;
/**
* The name of the choice to show to the user.
*/
name?: string | undefined;
/**
* The value of the choice.
*/
value?: any;
/**
* The short form of the name of the choice.
*/
short?: string | undefined;
/**
* The extra properties of the choice.
*/
extra?: any;
}
/**
* Provides all valid choice-types for any kind of question.
*
* @template T
* The type of the answers.
*/
export interface BaseChoiceMap<T extends Answers = Answers> {
Choice: Choice<T>;
ChoiceOptions: ChoiceOptions;
Separator: Separator;
SeparatorOptions: SeparatorOptions;
}
/**
* Provides all valid choice-types for the {@link ListQuestion `ListQuestion<T>`}.
*
* @template T
* The type of the answers.
*/
export interface ListChoiceMap<T extends Answers = Answers> extends BaseChoiceMap<T> {
ListChoiceOptions: ListChoiceOptions<T>;
}
/**
* Provides all valid choice-types for the {@link CheckboxQuestion `CheckboxQuestion<T>`}.
*
* @template T
* The type of the answers.
*/
export interface CheckboxChoiceMap<T extends Answers = Answers> extends BaseChoiceMap<T> {
CheckboxChoiceOptions: CheckboxChoiceOptions<T>;
}
/**
* Provides all valid choice-types for the {@link ExpandQuestion `ExpandQuestion<T>`}.
*
* @template T
* The type of the answers.
*/
export interface ExpandChoiceMap<T extends Answers = Answers> extends BaseChoiceMap<T> {
ExpandChoiceOptions: ExpandChoiceOptions;
}
/**
* Provides all valid choice-types.
*
* @template T
* The type of the answers.
*/
export interface AllChoiceMap<T extends Answers = Answers> {
BaseChoiceMap: BaseChoiceMap<T>[keyof BaseChoiceMap<T>];
ListChoiceMap: ListChoiceMap<T>[keyof ListChoiceMap<T>];
CheckboxChoiceMap: CheckboxChoiceMap<T>[keyof CheckboxChoiceMap<T>];
ExpandChoiceMap: ExpandChoiceMap<T>[keyof ExpandChoiceMap<T>];
}
/**
* Provides valid choices for the question of the {@link TChoiceMap `TChoiceMap`}.
*
* @template TAnswers
* The type of the answers.
*
* @template TChoiceMap
* The choice-types to provide.
*/
export type DistinctChoice<TAnswers extends Answers = Answers, TChoiceMap = AllChoiceMap<TAnswers>> =
| string
| TChoiceMap[keyof TChoiceMap];
/**
* Represents a set of choices.
*
* @template T
* The type of the answers.
*/
export type ChoiceCollection<T extends Answers = Answers> = Array<DistinctChoice<AllChoiceMap<T>>>;
/**
* Provides options for a question.
*
* @template T
* The type of the answers.
*/
export interface Question<T extends Answers = Answers, E extends keyof T = keyof T> {
/**
* The type of the question.
*/
type?: string | undefined;
/**
* The key to save the answer to the answers-hash.
*/
name: E;
/**
* The message to show to the user.
*/
message?: AsyncDynamicQuestionProperty<string, T> | undefined;
/**
* The default value of the question.
*/
default?: AsyncDynamicQuestionProperty<T[E], T> | undefined;
/**
* The prefix of the {@link message `message`}.
*/
prefix?: string | undefined;
/**
* The suffix of the {@link message `message`}.
*/
suffix?: string | undefined;
/**
* Post-processes the answer.
*
* @param input
* The answer provided by the user.
*
* @param answers
* The answers provided by the user.
*/
filter?(input: any, answers: T): T[E];
/**
* A value indicating whether the question should be prompted.
*/
when?: AsyncDynamicQuestionProperty<boolean, T> | undefined;
/**
* Validates the integrity of the answer.
*
* @param input
* The answer provided by the user.
*
* @param answers
* The answers provided by the user.
*
* @returns
* Either a value indicating whether the answer is valid or a {@link String `string`} which describes the error.
*/
validate?(input: any, answers?: T): boolean | string | Promise<boolean | string>;
/**
* Force to prompt the question if the answer already exists.
*/
askAnswered?: boolean;
}
/**
* Represents the possible answers of each question in the prompt
*/
export type QuestionAnswer<T extends Answers = Answers> = {
[K in keyof T]: {
name: K;
answer: T[K]
}
}[keyof T];
/**
* Provides options for a question for the {@link InputPrompt `InputPrompt<TQuestion>`}.
*
* @template T
* The type of the answers.
*/
export interface InputQuestionOptions<T extends Answers = Answers> extends Question<T> {
/**
* Transforms the value to display to the user.
*
* @param input
* The input provided by the user.
*
* @param answers
* The answers provided by the users.
*
* @param flags
* Additional information about the value.
*
* @returns
* The value to display to the user.
*/
transformer?(input: any, answers: T, flags: { isFinal?: boolean | undefined }): string | Promise<string>;
}
/**
* Provides options for a question for the {@link InputPrompt `InputPrompt<TQuestion>`}.
*
* @template T
* The type of the answers.
*/
export interface DirectoryQuestionOptions<T extends Answers = Answers> extends Question<T> {
/**
* Transforms the value to display to the user.
*
* @param input
* The input provided by the user.
*
* @param answers
* The answers provided by the users.
*
* @param flags
* Additional information about the value.
*
* @returns
* The value to display to the user.
*/
basePath: string;
}
/**
* Provides options for a question for the {@link InputPrompt `InputPrompt<TQuestion>`}.
*
* @template T
* The type of the answers.
*/
export interface InputQuestion<T extends Answers = Answers> extends InputQuestionOptions<T> {
/**
* @inheritdoc
*/
type?: 'input' | undefined;
}
/**
* Provides options for a question for the {@link InputPrompt `InputPrompt<TQuestion>`}.
*
* @template T
* The type of the answers.
*/
export interface DirectoryQuestion<T extends Answers = Answers> extends DirectoryQuestionOptions<T> {
/**
* @inheritdoc
*/
type?: 'directory' | undefined;
}
/**
* Provides options for a question for the {@link NumberPrompt `NumberPrompt<TQuestion>`}.
*
* @template T
* The type of the answers.
*/
export interface NumberQuestionOptions<T extends Answers = Answers> extends InputQuestionOptions<T> { }
/**
* Provides options for a question for the {@link NumberPrompt `NumberPrompt<TQuestion>`}.
*
* @template T
* The type of the answers.
*/
export interface NumberQuestion<T extends Answers = Answers> extends NumberQuestionOptions<T> {
/**
* @inheritdoc
*/
type: 'number';
}
/**
* Provides options for a question for the {@link PasswordPrompt `PasswordPrompt<TQuestion>`}.
*
* @template T
* The type of the answers.
*/
export interface PasswordQuestionOptions<T extends Answers = Answers> extends InputQuestionOptions<T> {
/**
* The character to replace the user-input.
*/
mask?: string | undefined;
}
/**
* Provides options for a question for the {@link PasswordPrompt `PasswordPrompt<TQuestion>`}.
*
* @template T
* The type of the answers.
*/
export interface PasswordQuestion<T extends Answers = Answers> extends PasswordQuestionOptions<T> {
/**
* @inheritdoc
*/
type: 'password';
}
/**
* Represents a list-based question that can loop.
*
* @template T
* The type of the answers.
*
* @template TChoiceMap
* The valid choices for the question.
*/
export interface LoopableListQuestionOptionsBase<T extends Answers, TChoiceMap> extends ListQuestionOptionsBase<T, TChoiceMap> {
/**
* A value indicating whether choices in a list should be looped.
*/
loop?: boolean | undefined;
}
/**
* Provides options for a question for the {@link ListPrompt `ListPrompt<TQuestion>`}.
*
* @template T
* The type of the answers.
*/
export interface ListQuestionOptions<T extends Answers = Answers>
extends LoopableListQuestionOptionsBase<T, ListChoiceMap<T>> { }
/**
* Provides options for a question for the {@link ListPrompt `ListPrompt<TQuestion>`}.
*
* @template T
* The type of the answers.
*/
export interface ListQuestion<T extends Answers = Answers> extends ListQuestionOptions<T> {
/**
* @inheritdoc
*/
type: 'list';
}
export interface ListSearchQuestion<T extends Answers = Answers> extends ListQuestionOptions<T> {
/**
* @inheritdoc
*/
type: 'search-list';
}
/**
* Provides options for a question for the {@link RawListPrompt `RawListPrompt<TQuestion>`}.
*
* @template T
* The type of the answers.
*/
export interface RawListQuestionOptions<T extends Answers = Answers> extends ListQuestionOptions<T> { }
/**
* Provides options for a question for the {@link RawListPrompt `RawListPrompt<TQuestion>`}.
*
* @template T
* The type of the answers.
*/
export interface RawListQuestion<T extends Answers = Answers> extends RawListQuestionOptions<T> {
/**
* @inheritdoc
*/
type: 'rawlist';
}
/**
* Provides options for a question for the {@link ExpandPrompt `ExpandPrompt<TQuestion>`}.
*
* @template T
* The type of the answers.
*/
export interface ExpandQuestionOptions<T extends Answers = Answers>
extends ListQuestionOptionsBase<T, ExpandChoiceMap<T>> { }
/**
* Provides options for a question for the {@link ExpandPrompt `ExpandPrompt<TQuestion>`}.
*
* @template T
* The type of the answers.
*/
export interface ExpandQuestion<T extends Answers = Answers> extends ExpandQuestionOptions<T> {
/**
* @inheritdoc
*/
type: 'expand';
}
/**
* Provides options for a question for the {@link CheckboxPrompt `CheckboxPrompt<TQuestion>`}.
*
* @template T
* The type of the answers.
*/
export interface CheckboxQuestionOptions<T extends Answers = Answers>
extends LoopableListQuestionOptionsBase<T, CheckboxChoiceMap<T>> { }
/**
* Provides options for a question for the {@link CheckboxPrompt `CheckboxPrompt<TQuestion>`}.
*
* @template T
* The type of the answers.
*/
export interface CheckboxQuestion<T extends Answers = Answers> extends CheckboxQuestionOptions<T> {
/**
* @inheritdoc
*/
type: 'checkbox';
}
/**
* Provides options for a question for the {@link CheckboxPrompt `CheckboxPrompt<TQuestion>`}.
*
* @template T
* The type of the answers.
*/
export interface CheckboxSearchQuestion<T extends Answers = Answers> extends CheckboxQuestionOptions<T> {
/**
* @inheritdoc
*/
type: 'search-checkbox';
}
/**
* Provides options for a question for the {@link ConfirmPrompt `ConfirmPrompt<TQuestion>`}.
*
* @template T
* The type of the answers.
*/
export interface ConfirmQuestionOptions<T extends Answers = Answers> extends Question<T> { }
/**
* Provides options for a question for the {@link ConfirmPrompt `ConfirmPrompt<TQuestion>`}.
*
* @template T
* The type of the answers.
*/
export interface ConfirmQuestion<T extends Answers = Answers> extends ConfirmQuestionOptions<T> {
/**
* @inheritdoc
*/
type: 'confirm';
}
/**
* Provides options for a question for the {@link EditorPrompt `EditorPrompt<TQuestion>`}.
*
* @template T
* The type of the answers.
*/
export interface EditorQuestionOptions<T extends Answers = Answers> extends Question<T> {
/**
* The postfix of the file being edited.
*
* Adding this will add color highlighting to the file content in most editors.
*/
postfix?: string;
}
/**
* Provides options for a question for the {@link EditorPrompt `EditorPrompt<TQuestion>`}.
*
* @template T
* The type of the answers.
*/
export interface EditorQuestion<T extends Answers = Answers> extends EditorQuestionOptions<T> {
/**
* @inheritdoc
*/
type: 'editor';
}
/**
* Provides the available question-types.
*
* @template T
* The type of the answers.
*/
export interface QuestionMap<T extends Answers = Answers> {
/**
* The {@link InputQuestion `InputQuestion<T>`} type.
*/
input: InputQuestion<T>;
/**
* The {@link NumberQuestion `NumberQuestion<T>`} type.
*/
number: NumberQuestion<T>;
/**
* The {@link PasswordQuestion `PasswordQuestion<T>`} type.
*/
password: PasswordQuestion<T>;
/**
* The {@link ListQuestion `ListQuestion<T>`} type.
*/
list: ListQuestion<T>;
/**
* The {@link ListQuestion `ListQuestion<T>`} type.
*/
"search-list": ListSearchQuestion<T>;
/**
* The {@link RawListQuestion `RawListQuestion<T>`} type.
*/
rawList: RawListQuestion<T>;
/**
* The {@link ExpandQuestion `ExpandQuestion<T>`} type.
*/
expand: ExpandQuestion<T>;
/**
* The {@link CheckboxQuestion `CheckboxQuestion<T>`} type.
*/
checkbox: CheckboxQuestion<T>;
/**
* The {@link CheckboxQuestion `CheckboxQuestion<T>`} type.
*/
"search-checkbox": CheckboxSearchQuestion<T>;
/**
* The {@link ConfirmQuestion `ConfirmQuestion<T>`} type.
*/
confirm: ConfirmQuestion<T>;
/**
* The {@link EditorQuestion `EditorQuestion<T>`} type.
*/
editor: EditorQuestion<T>;
/**
* The {@link EditorQuestion `EditorQuestion<T>`} type.
*/
directory: DirectoryQuestion<T>;
}
/**
* Represents one of the available questions.
*
* @template T
* The type of the answers.
*/
export type DistinctQuestion<T extends Answers = Answers> = QuestionMap<T>[keyof QuestionMap<T>];
/**
* Indicates the type of a question
*/
export type QuestionTypeName = DistinctQuestion['type'];
/**
* Represents a collection of questions.
*
* @template T
* The type of the answers.
*/
export type QuestionCollection<T extends Answers = Answers, E extends keyof T = keyof T> =
| DistinctQuestion<T>
| ReadonlyArray<DistinctQuestion<T>>
| Observable<DistinctQuestion<T>>
| { [P in KeyUnion<T>]?: (DistinctQuestion<T> & { name?: E }) };
/**
* Provides an input and an output-stream.
*/
export interface StreamOptions {
/**
* A stream to read the input from.
*/
input?: NodeJS.ReadStream | undefined;
/**
* A stream to write the output to.
*/
output?: NodeJS.WriteStream | undefined;
/**
* Whether to display prompts if input is not a TTY.
*/
skipTTYChecks?: boolean | undefined;
}
/**
* Provides the functionality to prompt questions to the user.
*/
export interface PromptModule extends PromptModuleBase {
/**
* The prompts of the prompt-module.
*/
prompts: prompts.PromptCollection;
/**
* Prompts the questions to the user.
*/
<T extends Answers = Answers>(questions: QuestionCollection<T>, initialAnswers?: Partial<T>): Promise<T> & { ui: ui.Prompt<T> };
/**
* Registers a new prompt-type.
*
* @param name
* The name of the prompt.
*
* @param prompt
* The constructor of the prompt.
*/
registerPrompt(name: string, prompt: prompts.PromptConstructor): this;
}
/**
* Provides components for the prompts.
*/
export namespace prompts {
/**
* Provides options for a prompt.
*
* @template T
* The type of the answers.
*/
type PromptOptions<T extends Question = Question> = T & {
/**
* The choices of the prompt.
*/
choices: Choices;
};
/**
* Represents the state of a prompt.
*/
type PromptState = LiteralUnion<'pending' | 'idle' | 'loading' | 'answered' | 'done'>;
/**
* Represents a prompt.
*/
interface PromptBase {
/**
* Gets or sets a string which represents the state of the prompt.
*/
status: PromptState;
/**
* Runs the prompt.
*
* @returns
* The result of the prompt.
*/
run(): Promise<any>;
}
/**
* Provides the functionality to initialize new prompts.
*/
interface PromptConstructor {
/**
* Initializes a new instance of a prompt.
*
* @param question
* The question to prompt.
*
* @param readLine
* An object for reading from the command-line.
*
* @param answers
* The answers provided by the user.
*/
new(question: any, readLine: ReadlineInterface, answers: Answers): PromptBase;
}
/**
* Provides a set of prompt-constructors.
*/
type PromptCollection = Record<string, PromptConstructor>;
/**
* Provides data about the state of a prompt.
*/
interface PromptStateData {
/**
* Either a {@link String `string`} which describes the error of the prompt or a {@link Boolean `boolean`} indicating whether the prompt-value is valid.
*/
isValid: string | boolean;
}
/**
* Provides data about the successful state of a prompt.
*
* @param T
* The type of the answer.
*/
interface SuccessfulPromptStateData<T = any> extends PromptStateData {
/**
* @inheritdoc
*/
isValid: true;
/**
* The value of the prompt.
*/
value: T;
}
/**
* Provides data about the failed state of a prompt.
*/
interface FailedPromptStateData extends PromptStateData {
/**
* @inheritdoc
*/
isValid: false | string;
}
/**
* Provides pipes for handling events of a prompt.
*
* @param T
* The type of the answer.
*/
interface PromptEventPipes<T = any> {
/**
* A pipeline for successful inputs.
*/
success: Observable<SuccessfulPromptStateData<T>>;
/**
* An object representing an error.
*/
error: Observable<FailedPromptStateData>;
}
}
/**
* Provides components for the ui.
*/
export namespace ui {
/**
* Represents the bottom-bar UI.
*/
class BottomBar extends UI {
/**
* Gets or sets a stream to write logs to.
*/
log: ThroughStream;
/**
* Initializes a new instance of the {@link BottomBar `BottomBar`} class.