UNPKG
trm-commons
Version:
latest (3.4.2)
3.4.2
3.4.1
3.4.0
3.3.2
3.3.1
3.3.0
3.2.1
3.2.0
3.1.0
3.0.0
2.0.0
1.1.0
1.0.0
TRM (Transport Request Manager) Shared library
www.trmregistry.com
RegestaItalia/trm-commons
trm-commons
/
dist
/
inquirer
/
Question.d.ts
15 lines
(14 loc)
•
327 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
export
type
Question
= {
type
:
'confirm'
|
'input'
|
'list'
|
'editor'
|
'password'
|
'select'
;
message
:
any
;
name
:
any
;
default
?:
any
;
validate
?:
any
;
choices
?:
any
[];
when
?:
any
;
pageSize
?:
number
;
expanded
?:
boolean
;
postfix
?:
string
;
filter
?:
boolean
;
required
?:
boolean
; };